#pragma once #include "CardT.h" class AceHighT : public CardT { public: AceHighT(SuiteT s = SuiteT::NONE, ValueT v=ValueT::NONE): CardT(s,v){} bool operator <(const AceHighT & other) const; };