summaryrefslogtreecommitdiff
path: root/examples/windoze/bcowl25/multimod/bookcb.h
blob: ce770fdcf2c2edbdfb7606b0ee86e24cb1390b2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#if !defined(__bookcb_h)              // Sentry, use file only if it's not already included.
#define __bookcb_h

/*  Project sword
    
    GNU Copyleft GPL � 1995. Almost No Rights Reserved.

    SUBSYSTEM:    sword.apx Application
    FILE:         bookcb.h
    AUTHOR:       The Sword Project Team


    OVERVIEW
    ========
    Class definition for BookCB (TComboBox).      
*/

#include <owl\owlpch.h>
#pragma hdrstop


#include "swordapp.rh"            // Definition of all resources.


//{{TComboBox = BookCB}}
class BookCB : public TComboBox {
public:
    BookCB (TWindow* parent, int id, int x, int y, int w, int h, uint32 style, uint textLen, TModule* module = 0);
    virtual ~BookCB ();
};    //{{BookCB}}


#endif                                      // __bookcb_h sentry.