Getting these two errors:
unresolved external symbol "public: __thiscall RefCount::RefCount(void)" (??0RefCount@@QAE@XZ) referenced in function "public: __thiscall UB_Array<int,char>::Node::Node(int const &)" (??0Node@?$UB_Array@HD@@QAE@ABH@Z) UB_Array C:\Users\tasnt\OneDrive\Desktop\C++ 3 Data Structures\UB_Array\UB_Array\main.obj 1
unresolved external symbol "public: virtual __thiscall RefCount::~RefCount(void)" (??1RefCount@@UAE@XZ) referenced in function __unwindfunclet$??0Node@?$UB_Array@HD@@QAE@ABH@Z$0 UB_Array C:\Users\tasnt\OneDrive\Desktop\C++ 3 Data Structures\UB_Array\UB_Array\main.obj 1
I'm in a fundamentals course on Data Structures, our professor has his own created string and pointer class he says we can use for a project we are doing. Following his instructions to set up the libraries we can use I have run into this error.
When I try to add libraries by going to properties -> linker -> input -> (here is where I'm supposed to add library files I believe).
At this point I don't see any .lib files the professor has provided so I'm just looking to be guided on what to do to fix this problem. Have I missed something? I have looked around online and haven't found anything that helps yet.