ACE 的Hello world:: 最简单的ACE 程序!

来源:互联网 发布:多伦多打车软件 编辑:程序博客网 时间:2024/05/17 22:48

#include "ace/OS_main.h"

#include "ace/Log_Msg.h"
#include <string>

using std::string;

int ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
    ACE_ERROR((LM_DEBUG,"Hello world/n"));
    return 0;
}

原创粉丝点击