#include "card.h" #include class Deck { public: Deck(); void shuffle(); bool is_empty() const; Card draw(); private: std::vector stack; };