00001 #ifndef DATABASE_H 00002 #define DATABASE_H 00003 00004 #include "card.h" 00005 #include "cardtest.h" 00006 #include "testresult.h" 00007 00008 typedef std::vector<GenericTest * > testVec; 00009 00010 class SSDatabase { 00011 public: 00012 00013 SSDatabase(); 00014 TestResult runTests(const Card &) const; 00015 00016 private: 00017 testVec allTests; 00018 }; 00019 00020 #endif