?? global_stuff.h
字號:
//
// File = global_stuff.h
//
//=========================================================
// Global Stuff
#ifndef _GLOBAL_STUFF_H_
#define _GLOBAL_STUFF_H_
#include <stdlib.h>
#include <iostream>
#include <fstream>
#include <math.h>
//#include <direct.h>
#include "sigstuff.h"
#include "control_T.h"
#include "parmfile.h"
#include "syst_graph.h"
#include "sigplot.h"
#include "reports.h"
#include "exec.h"
#include "psstream.h"
ofstream LongReport;
ofstream ShortReport;
PracSimStream DetailedResults;
PracSimStream BasicResults;
PracSimStream ErrorStream;
char* DateString;
bool DateInFileNames;
PracSimModel *CommSystem;
SystemGraph CommSystemGraph;
Executive Exec;
PracSimModel *PrevModelConstr;
PracSimModel *ActiveModel;
SignalPlotter SigPlot;
int PassNumber;
int MaxPassNumber;
int EnclaveNumber;
int EnclaveOffset[10];
//#ifdef _DEBUG
// ofstream DebugFile("../"SIM_NAME"/"SIM_NAME".dbg", ios::out);
//#endif
//ParmFile ParmInput("../"SIM_NAME"/"SIM_NAME".dat");
//char SimName[] = SIM_NAME;
ParmFile *ParmInput;
ofstream *DebugFile;
char *SimName;
void SimulationStartup(char *sim_name, char *sim_title);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -