F´ Flight Software - C/C++ Documentation NASA-v1.6.0
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.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
12namespace 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.
Definition File.cpp:6