aboutsummaryrefslogblamecommitdiffstats
path: root/examples/windoze/bcowl25/multimod/bookcb.cpp
blob: 837b2b9367838f05f2e371c50bac51d280ebc28f (plain) (tree)






































                                                                                                                  
/*  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.

}