hitsmessage.cpp
来自「粗糙集应用软件」· C++ 代码 · 共 52 行
CPP
52 行
// 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 + =
减小字号Ctrl + -
显示快捷键?