Files Classes Functions Hierarchy
00001 #ifndef MODULELIST_H 00002 #define MODULELIST_H 00003 00004 #include <cassert> 00005 #include <vector> 00006 using namespace std; 00007 00008 #include <typedefs.h> 00009 00015 class modulelist 00016 { 00017 public: 00018 00020 vector<string> modules; 00022 vector<string> doc; 00023 00025 boolc buildlist(); 00027 static string tempfile; 00028 00029 }; 00030 00031 #endif 00032
1.5.8