blob: f917c8feb4434d4db4ad580dbfe609856637143f [file]
#ifndef PROTOCOL1_HH
#define PROTOCOL1_HH
#include "umlrtprotocol.hh"
struct UMLRTCommsPort;
namespace Protocol1
{
class Base : public UMLRTProtocol
{
public:
Base( const UMLRTCommsPort * & srcPort );
};
class Conj : public UMLRTProtocol
{
public:
Conj( const UMLRTCommsPort * & srcPort );
};
};
#endif