complex macros with ;

This commit is contained in:
2022-07-25 11:18:09 +03:00
parent a1b9b7e1d6
commit a4882dc054
49 changed files with 137 additions and 137 deletions

View File

@@ -33,7 +33,7 @@
template<typename T = PIByteArray>
class PIGrabberBase: public PIThread
{
PIOBJECT_SUBCLASS(PIGrabberBase, PIThread)
PIOBJECT_SUBCLASS(PIGrabberBase, PIThread);
public:
PIGrabberBase() {
is_opened = false;
@@ -130,9 +130,9 @@ public:
close();
}
EVENT(dataReady)
EVENT(opened)
EVENT(closed)
EVENT(dataReady);
EVENT(opened);
EVENT(closed);
protected:
virtual void init() {}