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
You are declaring the static member Cards inside the class definition, but you aren't defining it anywhere. Add a definition after the class definition:
Cards
vector Card::Cards;