00001 #ifndef VISITOR_RETURN_H 00002 #define VISITOR_RETURN_H 00003 00004 #include <vector> 00005 using namespace std; 00006 00007 class Type; 00008 class SimpleFieldDeclaration; 00009 00010 struct VisitorReturn { 00011 Type *type; 00012 vector<SimpleFieldDeclaration*> fields; 00013 00014 }; 00015 00016 #endif 00017