namespace op | |
{ | |
// If the user needs his own variables to be shared across Worker classes, he can directly add them here. | |
struct UserDatum : public Datum | |
{ | |
/** | |
* Description of your variable. | |
*/ | |
bool boolThatUserNeedsForSomeReason; | |
UserDatum() {}; | |
virtual ~UserDatum(){}; | |
}; | |
} | |