home *** CD-ROM | disk | FTP | other *** search
- // ---------- main.cpp
-
- #include "ttt.h"
-
- class TTTApp : public Theatrix {
- public:
- TTTApp() : Theatrix("Tic-Tac-Toe")
- { ttt=new TicTacToe; }
- ~TTTApp()
- { delete ttt; }
- private:
- TicTacToe* ttt;
- };
-
- int main()
- {
- TTTApp app;
- app.go();
- return 0;
- }
-
-