クラスファイルがあります:grid.cpp
#include <iostream>
#define SIZE 10
using namespace std;
class Grid
{
private:
char **ptr;
public:
Grid(void);
void show();
};
Grid::Grid()
{
// sth ...
}
void Grid::show()
{
// sth ...
}
メイン クラスをビルドすると、コンパイラが失敗します。
|15|multiple definition of `Grid::Grid()'|
|28|multiple definition of `Grid::show()'|
どうしたの?