GCC C++ のコードを書いています。「グラフ」というテンプレートでクラスを書きます。
グラフ.h:
#include <vector>
template <class T> struct graphNode {
T* elementLink;
std::vector<int> edges;
};
template <class T> class graph {
private:
std::vector< graphNode<T> > nodes;
int findElement (T);
public:
void add(T);
void addEdge(T, T);
void deleteEdge(T, T);
bool isEmpty();
std::vector<T> getAdjacent(T);
};
graph.cpp (明らかに、最終的なものではありません):
#include "graph.h"
int graph::findElement(T a) {
for (int i = 0; i < nodes.size(); i++) {
if (nodes[i] == a) {
return i;
}
}
return -1;
}
そして、これらのビルドエラーが発生しました:
..\graph.cpp:3:24: error: 'template<class T> class graph' used without template parameters
template <class T> int graph::findElement(T a) {
^
..\graph.cpp: In function 'int findElement(T)':
..\graph.cpp:4:22: error: 'nodes' was not declared in this scope
for (int i = 0; i < nodes.size(); i++) {
^
どうしたの?