00001 /****************************************************************************** 00002 * swld.cpp - code for base class 'SWLD'. SWLD is the basis for all 00003 * types of Lexicon and Dictionary modules (hence the 'LD'). 00004 */ 00005 00006 #include <swgenbook.h> 00007 00008 00009 /****************************************************************************** 00010 * SWLD Constructor - Initializes data for instance of SWLD 00011 * 00012 * ENT: imodname - Internal name for module 00013 * imoddesc - Name to display to user for module 00014 * idisp - Display object to use for displaying 00015 */ 00016 00017 SWGenBook::SWGenBook(const char *imodname, const char *imoddesc, SWDisplay *idisp, SWTextEncoding enc, SWTextDirection dir, SWTextMarkup mark, const char* ilang) : SWModule(imodname, imoddesc, idisp, "Generic Books", enc, dir, mark, ilang) { 00018 } 00019 00020 00021 /****************************************************************************** 00022 * SWLD Destructor - Cleans up instance of SWLD 00023 */ 00024 00025 SWGenBook::~SWGenBook() { 00026 } 00027