/third_party/boost/libs/msm/doc/PDF/examples/ |
D | Constructor.cpp | 113 struct Song1 : public msm::front::state<> struct 115 int data_; 116 Song1():data_(0){} in Song1() argument 117 Song1(int i):data_(i){} in Song1() function 120 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 122 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | SCComposite.cpp | 109 struct Song1 : sc::simple_state< Song1, Playing > struct 111 Song1() { /*std::cout << "entering Song1" << std::endl;*/ } // entry in Song1() function 112 ~Song1() { /*std::cout << "leaving Song1" << std::endl;*/ } // exit in ~Song1() 114 Playing, &Playing::start_next_song > reactions;
|
D | Flags.cpp | 91 struct Song1 : public msm::front::state<> struct 93 typedef mpl::vector1<FirstSongPlaying> flag_list; 95 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 97 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | Orthogonal-deferred2.cpp | 97 struct Song1 : public msm::front::state<> struct 99 typedef mpl::vector1<FirstSongPlaying> flag_list; 101 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 103 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | Orthogonal-deferred.cpp | 109 struct Song1 : public msm::front::state<> struct 111 typedef mpl::vector1<FirstSongPlaying> flag_list; 113 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 115 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | History.cpp | 79 struct Song1 : public msm::front::state<> struct 82 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 84 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | CompositeTutorial.cpp | 87 struct Song1 : public msm::front::state<> struct 90 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 92 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | SerializeCompositeAndHistory.cpp | 86 struct Song1 : public msm::front::state<> struct 89 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 91 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | BoostCon09Full.cpp | 107 struct Song1 : public msm::front::state<> struct 109 typedef mpl::vector1<FirstSongPlaying> flag_list; 111 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 113 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
/third_party/boost/libs/msm/test/ |
D | TestConstructor.cpp | 118 struct Song1 : public msm::front::state<> struct 120 int data_; 121 Song1():data_(0){} in Song1() function 122 Song1(int i):data_(i){} in Song1() function 125 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 127 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | History.cpp | 100 struct Song1 : public msm::front::state<> struct 103 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry() 105 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit() 106 int entry_counter; 107 int exit_counter;
|
D | SerializeWithHistory.cpp | 106 struct Song1 : public msm::front::state<> struct 109 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry() 111 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit() 112 int entry_counter; 113 int exit_counter;
|
D | CompositeMachine.cpp | 100 struct Song1 : public msm::front::state<> struct 103 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry() 105 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit() 106 int entry_counter; 107 int exit_counter;
|
D | OrthogonalDeferred.cpp | 126 struct Song1 : public msm::front::state<> struct 128 typedef mpl::vector1<FirstSongPlaying> flag_list; 131 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry() 133 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit() 134 int entry_counter; 135 int exit_counter;
|
D | OrthogonalDeferred2.cpp | 131 struct Song1 : public msm::front::state<> struct 133 typedef mpl::vector1<FirstSongPlaying> flag_list; 136 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry() 138 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit() 139 int entry_counter; 140 int exit_counter;
|
D | OrthogonalDeferred3.cpp | 131 struct Song1 : public msm::front::state<> struct 133 typedef mpl::vector1<FirstSongPlaying> flag_list; 136 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry() 138 void on_exit(Event const&,FSM& ) {++exit_counter;} in on_exit() 139 int entry_counter; 140 int exit_counter;
|
/third_party/boost/libs/msm/doc/HTML/examples/ |
D | Constructor.cpp | 113 struct Song1 : public msm::front::state<> struct 115 int data_; 116 Song1():data_(0){} in Song1() argument 117 Song1(int i):data_(i){} in Song1() function 120 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 122 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | SCComposite.cpp | 109 struct Song1 : sc::simple_state< Song1, Playing > struct 111 Song1() { /*std::cout << "entering Song1" << std::endl;*/ } // entry in Song1() function 112 ~Song1() { /*std::cout << "leaving Song1" << std::endl;*/ } // exit in ~Song1() 114 Playing, &Playing::start_next_song > reactions;
|
D | Flags.cpp | 91 struct Song1 : public msm::front::state<> struct 93 typedef mpl::vector1<FirstSongPlaying> flag_list; 95 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 97 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | Orthogonal-deferred2.cpp | 97 struct Song1 : public msm::front::state<> struct 99 typedef mpl::vector1<FirstSongPlaying> flag_list; 101 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 103 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | Orthogonal-deferred.cpp | 109 struct Song1 : public msm::front::state<> struct 111 typedef mpl::vector1<FirstSongPlaying> flag_list; 113 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 115 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | History.cpp | 79 struct Song1 : public msm::front::state<> struct 82 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 84 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | CompositeTutorial.cpp | 87 struct Song1 : public msm::front::state<> struct 90 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 92 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | SerializeCompositeAndHistory.cpp | 86 struct Song1 : public msm::front::state<> struct 89 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 91 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|
D | BoostCon09Full.cpp | 107 struct Song1 : public msm::front::state<> struct 109 typedef mpl::vector1<FirstSongPlaying> flag_list; 111 … void on_entry(Event const&,FSM& ) {std::cout << "starting: First song" << std::endl;} in on_entry() 113 … void on_exit(Event const&,FSM& ) {std::cout << "finishing: First Song" << std::endl;} in on_exit()
|