#ifndef MATCH_H
#define MATCH_H
#include "Time.h"
class Match
{
public:
Match(int hour, int minu, int sec);
void testTime();
private:
Time m_tTimer;
};
#endif
报错:
error C2143: 语法错误 : 缺少“;”(在“&”的前面)
缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
#define MATCH_H
#include "Time.h"
class Match
{
public:
Match(int hour, int minu, int sec);
void testTime();
private:
Time m_tTimer;
};
#endif
报错:
error C2143: 语法错误 : 缺少“;”(在“&”的前面)
缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
2016-08-29