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

📄 hitsmessage.cpp

📁 粗糙集应用软件
💻 CPP
字号:
// HitsMessage.cpp: implementation of the HitsMessage class.
//
//////////////////////////////////////////////////////////////////////

#include <stdafx.h> // Added 980901 by Aleksander 踙rn.

#include "../copyright.h" // Added 000323 by Aleksander 豩rn.

#include "HitsMessage.h"

#include <kernel/basic/message.h>

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

HitsMessage::HitsMessage()
{

}

HitsMessage::~HitsMessage()
{

}

void HitsMessage::warn(String &s)
{
	//cerr << s;
	Message::Debug(s);
}

void HitsMessage::print(String & s)
{
	//cout << s;
	Message().Notify(s); // Added 990526 by Aleksander 豩rn.
	//Message::Progress(s);
}

void HitsMessage::warn(char * s)
{
	//cerr << s;
	Message::Debug(s);
}

void HitsMessage::print(char * s)
{
	//cout << s;
	Message().Notify(s); // Added 990526 by Aleksander 豩rn.
	//Message::Progress(s);
}

⌨️ 快捷键说明

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