Undefined Symbols for architecture x86_64: Compiling problems
There’s no mystery here, the linker is telling you that you haven’t defined the missing symbols, and you haven’t. Similarity::Similarity() or Similarity::~Similarity() are just missing and you have defined the others incorrectly, void Similarity::readData(Scanner& inStream){ } not void readData(Scanner& inStream){ } etc. etc. The second one is a function called readData, only the first is … Read more