F´ Flight Software - C/C++ Documentation  devel
A framework for building embedded system applications to NASA flight quality standards.
SimpleQueueRegistry.cpp
Go to the documentation of this file.
1 /*
2  * SimpleQueueRegistry.cpp
3  *
4  * Created on: Apr 7, 2016
5  * Author: tcanham
6  */
7 
8 #if FW_QUEUE_REGISTRATION
9 
11 
12 namespace Os {
13 
14  SimpleQueueRegistry::SimpleQueueRegistry() {
15  }
16 
17  SimpleQueueRegistry::~SimpleQueueRegistry() {
18  }
19 
20  void SimpleQueueRegistry::regQueue(Queue* obj) {
21  }
22 
23  void SimpleQueueRegistry::dump() {
24  }
25 
26 } /* namespace Os */
27 
28 #endif
Class declaration for a simple queue registry.