00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef Report_Conditioning_HPP
00012 #define Report_Conditioning_HPP
00013
00014 #include "read_write_base.hpp"
00015
00016 class Report_Conditioning_Obj: public read_write_base
00017 {
00018 public:
00019 identifier Id;
00020 llong Report_Id;
00021 int Col;
00022 int Sort_Pos;
00023 string Col_Handler;
00024 string Direction;
00025 string Format;
00026 string Tuple_Section;
00027 llong spawnedReport;
00028 string spawnedTuplePretext;
00029 string spawnedTuplePosttext;
00030 int spawningEvent;
00031
00032 Report_Conditioning_Obj():read_write_base()
00033 ,Id(0LL)
00034 ,Report_Id(0LL)
00035 ,Col(0)
00036 ,Sort_Pos(0)
00037 ,Col_Handler("")
00038 ,Direction("")
00039 ,Format("")
00040 ,Tuple_Section("")
00041 ,spawnedReport(0LL)
00042 ,spawnedTuplePretext("")
00043 ,spawnedTuplePosttext("")
00044 ,spawningEvent(0)
00045 {
00046
00047 data_name("Report_Conditioning");
00048
00049 addDXMap( new llongXfer("Id", &Id ));
00050 addDXMap( new llongXfer("Report_Id", &Report_Id ));
00051 addDXMap( new intXfer("Col", &Col ));
00052 addDXMap( new intXfer("Sort_Pos", &Sort_Pos ));
00053 addDXMap( new stringXfer("Col_Handler", &Col_Handler ));
00054 addDXMap( new stringXfer("Direction", &Direction ));
00055 addDXMap( new stringXfer("Format", &Format ));
00056 addDXMap( new stringXfer("Tuple_Section", &Tuple_Section ));
00057 addDXMap( new llongXfer("spawnedReport", &spawnedReport ));
00058 addDXMap( new stringXfer("spawnedTuplePretext", &spawnedTuplePretext ));
00059 addDXMap( new stringXfer("spawnedTuplePosttext", &spawnedTuplePosttext ));
00060 addDXMap( new intXfer("spawningEvent", &spawningEvent ));
00061 }
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077 };
00078 #endif
00079