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