Skip to content
Permalink
1eb01e12ac
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (17 sloc) 347 Bytes
#ifndef IO_PROCESSOR_HPP
#define IO_PROCESSOR_HPP
#include <stdio.h>
#include <Windows.h>
/*
This class is the class that abstracts the io processor side of the data exchange between
IO processors and algorithms
*/
class IOProcessor
{
public:
IOProcessor() {};
// Async control
unsigned int startComms();
bool stopComms();
};
#endif