在TEMPLATE1之前预期的不合格错误'{'

时间:2016-12-01 11:21:11

标签: c++ omnet++

早上伙计们,我正在运行这段代码,但是我得到了错误:“在TEMPLATE1之前预期'{',在”简短的初始化TEMPLATE1inate“行,即使我不明白为什么需要它。 / p>
class MIXIM_API TEMPLATE1 : public cObject
    {
    public:
        /** @brief Constant with all values set to 0. */
        static const TEMPLATE1 ZERO;

public:
    BasicSafetyMessage BSM;

private:
  void copy(const TEMPLATE1& other) { BSM = other.BSM; }

public:
    /** @brief Default constructor. */
    TEMPLATE1()
        : BSM {}

    /** @brief Initializes a TEMPLATE1inate. */
    TEMPLATE1( BasicSafetyMessage bsm )
           : BSM(bsm) {}

    /** @brief Initializes TEMPLATE1inate from other TEMPLATE1inate. */
    TEMPLATE1(const TEMPLATE1& other)
        : cObject(other) { copy(other); }

    /** @brief Returns a string with the value of the TEMPLATE1inate. */
    std::string info() const;

};


inline std::ostream& operator<<(std::ostream& os, const TEMPLATE1& TEMPLATE1)
{
    return os << "(" << TEMPLATE1.BSM << ")";
}

inline std::string TEMPLATE1::info() const {
    std::stringstream os;
    os << *this;
    return os.str();
}

1 个答案:

答案 0 :(得分:1)

TEMPLATE1()
    : BSM {}

我不知道应该做什么。您缺少一组()或一组{}或其他我无法猜到的内容。

这是一个空的默认构造函数,使用BSM的默认构造函数:

TEMPLATE1()
{
}

我想你想要那个。