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