propertydemarshaller.hpp

来自「机器人开源项目orocos的源代码」· HPP 代码 · 共 27 行

HPP
27
字号
#ifndef PROPERTY_DEMARSHALLER#define PROPERTY_DEMARSHALLER#include "../Marshaller.hpp"#include <string>namespace RTT{    /**     * @brief The default Orocos demarshaller for extracting properties and property bags     * from a property file.     * @see PropertyMarshaller to create property files.     */    class PropertyDemarshaller        : public Demarshaller    {        Demarshaller* d;        PropertyDemarshaller(const PropertyDemarshaller& );    public:        PropertyDemarshaller( const std::string& filename );        ~PropertyDemarshaller();        virtual bool deserialize( PropertyBag &v );    };}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?