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