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

📄 transmit.cpp

📁 用于仿真系统中多个仿真对象间的内存管理
💻 CPP
字号:
// Transmit.cpp: implementation of the Transmit class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "Transmit.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

Transmit::Transmit()
{
	inportnum = 1;
	outportnum = 1;
	nblock = 4;
	nsamp = 8;
}

Transmit::~Transmit()
{

}

void Transmit::Inital_InPort()
{
	port_type = INPORT;
	data_type = PTREAL;
	IOPort* port = new IOPort(nblock,port_type,data_type);
	port->SetPortID(0);
	inport_list.push_back(port);	
}

void Transmit::Inital_OutPort()
{
	port_type = OUTPORT;
	data_type = PTCOMPLEX;
	IOPort* port = new IOPort(GetDataSize(),port_type,data_type);
	port->SetPortID(1);
	outport_list.push_back(port);	
}

void Transmit::InPutData()
{
	binarydata = GetBuf(0);
	
	cout << "The Transmit\t" << typeid(*this).name()  <<" info:" << endl;
	cout << "InPutBuffer is:" << binarydata << endl;
}

void Transmit::OutPutData()
{
	singal = GetBuf(1);

	cout << "OutPutBuffer is:" << singal << endl;
	cout << endl;
}


⌨️ 快捷键说明

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