Skip to content
Permalink
af68184db9
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
17 lines (10 sloc) 235 Bytes
#ifndef VIRTUAL_OUTPUT_PROCESSOR_HPP
#define VIRTUAL_OUTPUT_PROCESSOR_HPP
#include <stdio.h>
#include "IOProcessor.hpp"
class VirtualOutputProcessor : public IOProcessor
{
public:
void threadRuntime();
};
#endif