如何在mixim中使用c ++代码

时间:2014-02-12 19:45:18

标签: c++ omnet++

/*
 * Test1.cpp
 *
 *  Created on: Feb 13, 2014
 *  Author: user
 */
#ifndef TEST1_H_
#define TEST1_H_
#include<iostream>
#include<omnetpp.h>
namespace aaa 
{
    class Test1 
    {
        public:
        virtual void init();
    };
} /* namespace aaa */
#endif /* TEST1_H_ */
#include "Test1.h"
namespace aaa 
{
    #include <cassert>
    //Define_Module(A1)
    void Test1::init()
    {
        //std::cout<<"hello,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,";
        ev<<"hello,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,";
    }
} /* namespace aaa */

我的代码中可能出现的错误是什么?为什么不打印?

0 个答案:

没有答案