summaryrefslogtreecommitdiff
path: root/examples/windoze/bcowl25/multimod/bookcb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/windoze/bcowl25/multimod/bookcb.cpp')
-rw-r--r--examples/windoze/bcowl25/multimod/bookcb.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/examples/windoze/bcowl25/multimod/bookcb.cpp b/examples/windoze/bcowl25/multimod/bookcb.cpp
deleted file mode 100644
index 837b2b9..0000000
--- a/examples/windoze/bcowl25/multimod/bookcb.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-/* Project sword
-
- GNU Copyleft GPL © 1995. Almost No Rights Reserved.
-
- SUBSYSTEM: sword.apx Application
- FILE: bookcb.cpp
- AUTHOR: The Sword Project Team
-
-
- OVERVIEW
- ========
- Source file for implementation of BookCB (TComboBox).
-*/
-
-#include <owl\owlpch.h>
-#pragma hdrstop
-
-#include "bookcb.h"
-
-
-//{{BookCB Implementation}}
-
-
-BookCB::BookCB (TWindow* parent, int id, int x, int y, int w, int h, uint32 style, uint textLen, TModule* module):
- TComboBox(parent, id, x, y, w, h, style, textLen, module)
-{
- // INSERT>> Your constructor code here.
-
-}
-
-
-BookCB::~BookCB ()
-{
- Destroy();
-
- // INSERT>> Your destructor code here.
-
-}
-