私はテンプレートを使用しておらず、静的クラスや関数ではないため、定義時に LNK2001 エラーが発生する理由がまったくわかりません。完全なエラーは次のとおりです。
1>mapgenerator.obj : error LNK2019: unresolved external symbol "private: class std::vector<int,class std::allocator<int> > __thiscall MapGenerator::Decode(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (?Decode@MapGenerator@@AAE?AV?$vector@HV?$allocator@H@std@@@std@@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@3@@Z) referenced in function "private: void __thiscall MapGenerator::GenerateTileLayer(class TiXmlNode *)" (?GenerateTileLayer@MapGenerator@@AAEXPAVTiXmlNode@@@Z)
私の MapGenerator クラス;
class MapGenerator
{
public:
//Constructor and destructor
MapGenerator(std::string tmxfile) : doc(tmxfile.c_str()) { Load(); }
~MapGenerator();
//Loads in a new TMX file
void Load();
//Returns a map
void GetMap();
//Reads the TMX document
void Read();
private:
//The TMX document
TiXmlDocument doc;
//Generates a tile layer
void GenerateTileLayer(TiXmlNode* node);
//Generates a tileset
void GenerateTileset(TiXmlNode* node);
//Generates an Object Layer
void GenerateObjectLayer(TiXmlNode* node);
//Generates a Map Object(Goes in the object layer)
void GenerateObject(TiXmlNode* node);
//Decodes the data
std::vector<int> Decode(std::string data);
bool loadOkay;
};
そして、.cpp の付随する定義は、
std::vector<int> Decode(std::string data)
{
//Represents the layer data
std::vector<int> layerdata;
//Decodes the data
data = base64_decode(data);
//Shift bits
for(unsigned int i = 0; i < data.size(); i+=4)
{
const int gid = data[i] |
data[i + 1] << 8 |
data[i + 2] << 16 |
data[i + 3] << 24;
//Add the resulting integer to the layer data vector
layerdata.push_back(gid);
}
//Return the layer data vector
return layerdata;
}
私はこのように関数を呼び出しています、
std::string test(node->FirstChild("data")->Value());
data = Decode(test);
すべてが適切に見えるのに、なぜ不平を言っているのかわかりません。補足として、関数が std::string の代わりに const char* const を取るようにしようとしましたが、これは Value() が返すものですが、それでも LNK2001 エラーが発生します。何か案は?