/* * IObjectDictinary.hh * * Created on: 1 февр. 2024 г. * Author: titov */ #ifndef UMLIBRARY_COMMUNICATION_IOBJECTDICTINARY_HH_ #define UMLIBRARY_COMMUNICATION_IOBJECTDICTINARY_HH_ #include #include #include "../systemic/IFunctor.hh" #include "../systemic/IValue.hpp" #include "../systemic/IValueAsync.hpp" namespace communication { class IObjectDictinary { public: typedef uint16_t Index; template bool addValue( Index index, systemic::IValue & value ); template bool addParameter( Index index, systemic::IValueType & parameter ); bool addRecord( Index index, ) }; } #endif /* UMLIBRARY_COMMUNICATION_IOBJECTDICTINARY_HH_ */