summaryrefslogtreecommitdiff
path: root/examples/windoze/bcowl25/multimod/bookcb.cpp
diff options
context:
space:
mode:
authorRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:33 -0400
committerRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:33 -0400
commit8d3fc864d094eeadc721f8e93436b37a5fab173e (patch)
tree05e201c67dca55b4ccdf90ad479a25d95e3b1e63 /examples/windoze/bcowl25/multimod/bookcb.cpp
Imported Upstream version 1.5.3
Diffstat (limited to 'examples/windoze/bcowl25/multimod/bookcb.cpp')
-rw-r--r--examples/windoze/bcowl25/multimod/bookcb.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/examples/windoze/bcowl25/multimod/bookcb.cpp b/examples/windoze/bcowl25/multimod/bookcb.cpp
new file mode 100644
index 0000000..837b2b9
--- /dev/null
+++ b/examples/windoze/bcowl25/multimod/bookcb.cpp
@@ -0,0 +1,39 @@
+/* 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.
+
+}
+