?? varcontainer.h
字號(hào):
#ifndef VarContainer_H
#define VarContainer_H
#include <iostream>
#include <stdio.h>
#include <vector>
#include <string>
#include <stdlib.h>
using namespace std;
#include "GenMultScript.h"
#include "GenMathVHDL.h"
#include "GenVHDL.h"
#include "MathVHDL_var.h"
#include "VHDL_var.h"
class VarContainer {
public:
VarContainer(vector<MathVHDL_var*> termArray, MathVHDL_var* Din);
MathVHDL_var* GetTerm(int num);
MathVHDL_var* GetDin();
MathVHDL_var* GetByType(int Type,int TermNum);
protected:
vector<MathVHDL_var*> mTermArray;
MathVHDL_var* mDin;
};
#endif
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -