Added virtual destructors (in most cases protected) to remove g++ warnings:

'class ...' has virtual functions but non-virtual destructor
This commit is contained in:
Andrew Johnson
2008-07-28 16:19:50 +00:00
parent 8a17c4b1e8
commit b6ee45dbab
9 changed files with 21 additions and 1 deletions

View File

@@ -38,6 +38,8 @@ protected:
epicsThreadId id;
bool recvWakeup;
bool sendWakeup;
protected:
virtual ~circuit() {}
};
class serverCircuit : public circuit {