⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 global_stuff.h

📁 终于找到了bpsk信号的调制
💻 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 + -