complex macros with ;
This commit is contained in:
@@ -34,7 +34,7 @@
|
||||
template <typename Tin, typename Tout>
|
||||
class PIPipelineThread : public PIThread
|
||||
{
|
||||
PIOBJECT_SUBCLASS(PIPipelineThread, PIThread)
|
||||
PIOBJECT_SUBCLASS(PIPipelineThread, PIThread);
|
||||
public:
|
||||
PIPipelineThread() {
|
||||
cnt = 0;
|
||||
@@ -51,9 +51,9 @@ public:
|
||||
}
|
||||
template <typename T>
|
||||
void connectTo(PIPipelineThread<Tout, T> * next) {
|
||||
CONNECT3(void, Tout, bool, bool *, this, calculated, next, enqueue)
|
||||
CONNECT3(void, Tout, bool, bool *, this, calculated, next, enqueue);
|
||||
}
|
||||
EVENT3(calculated, const Tout &, v, bool, wait, bool *, overload)
|
||||
EVENT3(calculated, const Tout &, v, bool, wait, bool *, overload);
|
||||
EVENT_HANDLER3(void, enqueue, const Tin &, v, bool, wait, bool *, overload) {
|
||||
mutex.lock();
|
||||
//piCoutObj << "enque" << overload;
|
||||
|
||||
Reference in New Issue
Block a user