summaryrefslogtreecommitdiff
path: root/examples/windoze/bcowl25/multimod/swordapp.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/windoze/bcowl25/multimod/swordapp.h')
-rw-r--r--examples/windoze/bcowl25/multimod/swordapp.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/examples/windoze/bcowl25/multimod/swordapp.h b/examples/windoze/bcowl25/multimod/swordapp.h
deleted file mode 100644
index 776d025..0000000
--- a/examples/windoze/bcowl25/multimod/swordapp.h
+++ /dev/null
@@ -1,59 +0,0 @@
-#if !defined(__swordapp_h) // Sentry, use file only if it's not already included.
-#define __swordapp_h
-
-/* Project sword
-
- GNU Copyleft GPL © 1995. Almost No Rights Reserved.
-
- SUBSYSTEM: sword.exe Application
- FILE: swordapp.h
- AUTHOR: The Sword Project Team
-
-
- OVERVIEW
- ========
- Class definition for swordApp (TApplication).
-*/
-
-
-#include <owl\owlpch.h>
-#pragma hdrstop
-
-
-#include "swordapp.rh" // Definition of all resources.
-
-
-//
-// FrameWindow must be derived to override Paint for Preview and Print.
-//
-//{{TDecoratedFrame = SDIDecFrame}}
-class SDIDecFrame : public TDecoratedFrame {
-public:
- SDIDecFrame (TWindow *parent, const char far *title, TWindow *clientWnd, bool trackMenuSelection = false, TModule *module = 0);
- ~SDIDecFrame ();
-}; //{{SDIDecFrame}}
-
-
-//{{TApplication = swordApp}}
-class swordApp : public TApplication {
-private:
-
-public:
- swordApp ();
- virtual ~swordApp ();
-
-//{{swordAppVIRTUAL_BEGIN}}
-public:
- virtual void InitMainWindow();
-//{{swordAppVIRTUAL_END}}
-
-//{{swordAppRSP_TBL_BEGIN}}
-protected:
- void CmHelpAbout ();
- void SearchText ();
-//{{swordAppRSP_TBL_END}}
-DECLARE_RESPONSE_TABLE(swordApp);
-}; //{{swordApp}}
-
-
-#endif // __swordapp_h sentry.