///////////////////////////////////////////////// // Application class TApp{ private: TCRef CRef; private: PNotify Notify; public: TApp(const PNotify& _Notify=NULL): Notify(_Notify){} virtual ~TApp(){} TApp(TSIn&){Fail;} static TPt Load(TSIn&){Fail; return NULL;} void Save(TSOut&){Fail;} TApp& operator=(const TApp&){Fail; return *this;} friend class TPt; }; typedef TPt PApp;