00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef incCOMMON_IMPORTABLE_OBJECT
00010 #define incCOMMON_IMPORTABLE_OBJECT
00011
00012
00013 #include <string>
00014 #include "object.hpp"
00015
00016 namespace ph {
00017 namespace common {
00018
00019
00020
00021 class importable_object_base
00022
00023
00024
00025 {
00026 public:
00027 virtual ~importable_object_base() {}
00028
00029 virtual void setname(const std::string &name) = 0;
00030
00031
00032
00033 virtual void addparam(const std::string &name, const std::string &value) = 0;
00034
00035
00036
00037 };
00038
00039 };
00040 };
00041
00042 #endif // incCOMMON_IMPORTABLE_OBJECT