Changeset 11517
- Timestamp:
- 07/21/11 13:27:46 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/EventImp.h
r11481 r11517 30 30 // Function handling 31 31 EventImp &AssignFunction(const boost::function<int(const EventImp &)> &func) { fFunction = func; return *this; } 32 bool HasFunc() const { return fFunction; }32 bool HasFunc() const { return (bool)fFunction; } 33 33 int ExecFunc() const { return fFunction ? fFunction(*this) : -1; } 34 34
Note:
See TracChangeset
for help on using the changeset viewer.