| 147 | } |
| 148 | ~Mama() {} |
| 149 | void Cooking() |
| 150 | { |
| 151 | cout << "Mama is cooking ..." << endl; |
| 152 | cout << "Luch is ready!" << endl; |
| 153 | if(async) |
| 154 | { |
| 155 | g_amsgbus.Send<void>(lunch_ready); |
| 156 | } |
| 157 | else |
| 158 | { |
| 159 | g_msgbus.Send<void>(lunch_ready); |
| 160 | } |
| 161 | } |
| 162 | void GetFeedback(string* name, string* rate) |
| 163 | { |
| 164 | cout << *name << ": " << *rate << endl; |
no outgoing calls
no test coverage detected