Files Classes Functions Hierarchy
00001 #ifndef VISITDATAC_H 00002 #define VISITDATAC_H 00003 00004 #include <visitbase.h> 00005 #include <visitprint.h> 00006 //#include <mathlib.h> 00007 00008 class visitdataC : public visitbase 00009 { 00010 public: 00011 00012 int val1; 00013 int val2; 00014 00015 visitdataC(int const _val1, int const _val2) 00016 : val1(_val1), val2(_val2) {} 00017 00018 bool const visit( visitbase & x); 00019 00020 private: 00021 00022 bool const visit( visitprint & p); 00023 }; 00024 00025 #endif 00026 00027
1.5.8