F´ Flight Software - C/C++ Documentation  devel
A framework for building embedded system applications to NASA flight quality standards.
SimpleQueueRegistry.hpp
Go to the documentation of this file.
1 
20 #ifndef SIMPLEQUEUEREGISTRY_HPP_
21 #define SIMPLEQUEUEREGISTRY_HPP_
22 
23 #if FW_QUEUE_REGISTRATION
24 
25 #include <Os/Queue.hpp>
26 
27 namespace Os {
28 
29  class SimpleQueueRegistry: public QueueRegistry {
30  public:
31  SimpleQueueRegistry();
32  virtual ~SimpleQueueRegistry();
33  void regQueue(Queue* obj);
34  void dump();
35  };
36 
37 } /* namespace Os */
38 
39 #endif // FW_QUEUE_REGISTRATION
40 
41 #endif /* SIMPLEQUEUEREGISTRY_HPP_ */