Files Classes Functions Hierarchy
#include <visitdataC.h>
Public Member Functions | |
| visitdataC (int const _val1, int const _val2) | |
| bool const | visit (visitbase &x) |
| The default call says that w operator/data was not matched. | |
Public Attributes | |
| int | val1 |
| int | val2 |
Definition at line 8 of file visitdataC.h.
| visitdataC::visitdataC | ( | int const | _val1, | |
| int const | _val2 | |||
| ) | [inline] |
The default call says that w operator/data was not matched.
Reimplemented from visitbase.
Definition at line 11 of file visitdataC.cpp.
00012 { 00013 if (typeid(x)==typeid(visitprint)) 00014 return visit( (visitprint&)x ); 00015 00016 return false; 00017 }
| int visitdataC::val1 |
Definition at line 12 of file visitdataC.h.
| int visitdataC::val2 |
Definition at line 13 of file visitdataC.h.
1.5.8