RecoSim  1.0
 All Classes Files Functions Variables Enumerations
simulation_controller.h
Go to the documentation of this file.
1 
21 #ifndef SIMULATION_CONTROLLER_H
22 #define SIMULATION_CONTROLLER_H
23 
24 #define SC_INCLUDE_DYNAMIC_PROCESSES
25 
26 #include <fstream>
27 #include <systemc.h>
28 
29 using namespace std;
30 
31 class Application;
32 
34 
35 private:
36  static ofstream *logfile_ptr;
37 
38 public:
39  static void setOutputStreamPtr(ofstream *ptr);
40  static ofstream& get_logfile(void);
41  static void endSimulation(void);
42 };
43 
44 #endif
Definition: simulation_controller.h:33
Definition: application.h:37