File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/*
2- * Cmd .hpp
2+ * PrmBuffer .hpp
33 *
44 * Created on: Sep 10, 2012
55 * Author: ppandian
Original file line number Diff line number Diff line change 1+ // ============================================================================
2+ // @file PrmExternalTypes.hpp
3+ // @author Brian Campuzano
4+ // @brief Types for delegating parameter serialization and deserialization
5+ // ============================================================================
6+
7+ #ifndef FW_EXTERNAL_PARAM_TYPES_HPP
8+ #define FW_EXTERNAL_PARAM_TYPES_HPP
9+
10+ namespace Fw {
11+
12+ // TODO fix these types with Havard
13+ // TODO Why isn't spell check running?
14+ using ParamSerizationFunc = auto (const FwPrmIdType id, ParamBuffer& buff) -> void ;
15+ // Do we need/want this?
16+ using ParamSerizationFuncPtr = ParamSerization (*);
17+ using ParamDeserizationPtr = SerializeStatus (*) (const FwPrmIdType id, ParamBuffer& buff);
18+
19+ } // namespace Fw
20+
21+ #endif
You can’t perform that action at this time.
0 commit comments