I noticed that I can place a Class inside a vector; here is my program, where I am receiving the following error:
/out:blackjack.exe blackjack.obj blackjack.obj
Your cards vector is defined as static. That means it is effectively a global variable that you must define. This can be done by putting the following after the class definition of Card:
Card
std::vector Card::Cards();