F´ Flight Software - C/C++ Documentation  NASA-v2.0.1
A framework for building embedded system applications to NASA flight quality standards.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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(void);
35  };
36 
37 } /* namespace Os */
38 
39 #endif // FW_QUEUE_REGISTRATION
40 
41 #endif /* SIMPLEQUEUEREGISTRY_HPP_ */
Os
Definition: File.cpp:7
Queue.hpp