00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef Color_HPP
00012 #define Color_HPP
00013
00014 #include "read_write_base.hpp"
00015
00016 class Color_Obj: public read_write_base
00017 {
00018 public:
00019 identifier Id;
00020 string External_Id;
00021 string Name;
00022 string Abbreviation;
00023 string RGB;
00024 string Image;
00025
00026 Color_Obj():read_write_base()
00027 ,Id(0LL)
00028 ,External_Id("")
00029 ,Name("")
00030 ,Abbreviation("")
00031 ,RGB("")
00032 ,Image("")
00033 {
00034
00035 data_name("Color");
00036
00037 addDXMap( new llongXfer("Id", &Id ));
00038 addDXMap( new stringXfer("External_Id", &External_Id ));
00039 addDXMap( new stringXfer("Name", &Name ));
00040 addDXMap( new stringXfer("Abbreviation", &Abbreviation ));
00041 addDXMap( new stringXfer("RGB", &RGB ));
00042 addDXMap( new stringXfer("Image", &Image ));
00043 }
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059 };
00060 #endif
00061