doil/utils/omniidl_be/tests/unitTest/stubs/Logger.h
Go to the documentation of this file.
1 #ifndef LOGGER_H
2 #define LOGGER_H
3 
4 #include <queue>
5 #include <string>
6 
7 namespace UnitTest
8 {
9 namespace Servant
10 {
11 class Logger
12 {
13 public:
14  int push(std::string& str);
15  int push(const char* str);
16  std::string pop();
17  int size() { return m_q.size(); }
18 private:
19  std::queue<std::string> m_q;
20 }; // class Logger
21 }; // namespace Servant
22 }; // namespace UnitTest
23 
24 
25 #endif // LOGGER_H
int push(std::string &str)
Definition: Logger.cpp:8
std::string pop()
Definition: Logger.cpp:20


openrtm_aist
Author(s): Noriaki Ando
autogenerated on Mon Jun 10 2019 14:07:52