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

📄 varcontainer.h

📁 產生你所需要的FIR濾波器
💻 H
字号:
#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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -