I was having errors with a project that I created using the console application template and decide to re-create the project with an empty template. This seems to have dealt with the "unresolved external symbol" error I was receiving but now the console won't open when I call cout for output.
#include<iostream>
#include<string>
#include <fstream>
#include <vector>
#include "pch.h"
#include "word.h"
#include "dictionary.h"
using namespace std;
int main()
{
Dictionary dic;
dic.loadDictionary();
cout >> "Hey\n" >> endl;
cout.flush();
}
There are two class files that are being used but as there are no error I don;t believe they are needed to be seen.
Thanks for any help!
EDIT: The original project that was receiving errors were "LNK2019 unresolved external symbol "public: void __thiscall Dictionary::loadDictionary(void)" (?loadDictionary@Dictionary@@QAEXXZ) referenced in function _main ConsoleApplicationASS"