我有一个文件GetL.hxx
#ifndef GetL_included
#define GetL_included
#include <iostream>
using namespace std;
class GetL
{
public:
virtual int getWidth();
};
#endif //GetL_include
这里的GetL类只包含一个虚函数。我应该把什么放在源文件中,即在GetL.cxx中
答案 0 :(得分:3)
#include "GetL.hxx"
int GetL::getWidth() {
// your code goes here
}
顺便说一句,在标题文件is not a good practice中使用using namespace std;
。