Changeset 18890
- Timestamp:
- 06/24/17 10:58:32 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/EventImp.h
r14564 r18890 34 34 // Configuration helper 35 35 EventImp &operator()(const std::function<int(const EventImp &)> &func) { return AssignFunction(func); } 36 EventImp &operator()(const std::string str) { SetDescription(str); return *this; }36 EventImp &operator()(const std::string &str) { SetDescription(str); return *this; } 37 37 EventImp &operator()(const char *str) { SetDescription(str); return *this; } 38 38 EventImp &operator()(int state) { fAllowedStates.push_back(state); return *this; }
Note:
See TracChangeset
for help on using the changeset viewer.