Files Classes Functions Hierarchy
00001 #ifndef CIREPORT_H 00002 #define CIREPORT_H 00003 00004 #include <cassert> 00005 using namespace std; 00006 00007 #include <modulelist.h> 00008 #include <modulereport.h> 00009 #include <typedefs.h> 00010 00019 class cireport 00020 { 00021 public: 00022 00024 static string reportfile; 00026 static string docfile; 00027 00029 modulelist ml; 00030 00032 vector<modulereport> mr; 00033 00035 cireport(); 00037 void reset(); 00038 00040 stringc summaryblock1(); 00042 stringc summaryblock2(); 00044 stringc summaryblock3(); 00045 stringc report01(); 00046 00048 void test01(); 00049 00051 int reportfile_update(); 00053 int docfile_update(); 00054 00055 }; 00056 00057 #endif 00058
1.5.8