CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FsmFailedEvent.h
Go to the documentation of this file.
1 #ifndef EVF_FSMFAILEDEVENT_H
2 #define EVF_FSMFAILEDEVENT_H 1
3 
4 #include "toolbox/Event.h"
5 
6 #include <string>
7 
8 
9 namespace evf {
10 
11 
12  class FsmFailedEvent : public toolbox::Event
13  {
14  public:
15  //
16  // construction/destruction
17  //
18  FsmFailedEvent(const std::string& errorMessage,void *originator=0);
19 
20  //
21  // member functions
22  //
23  std::string errorMessage() { return errorMessage_; }
24 
25 
26 private:
27  //
28  // member data
29  //
30  std::string errorMessage_;
31 
32  };
33 
34 }
35 
36 
37 #endif
std::string errorMessage()
FsmFailedEvent(const std::string &errorMessage, void *originator=0)
std::string errorMessage_