00001 #ifndef TEST_WALDO_CLASS 00002 #define TEST_WALDO_CLASS 00003 00004 /*****************************************************************************\ 00005 * * 00006 * Name : test_waldo * 00007 * Author : Chris Koeritz * 00008 * * 00009 * Purpose: * 00010 * * 00011 * The network gateway class is the outermost bulwhark around the transport * 00012 * subsystem. It begins operation of the communicator class through which * 00013 * all clients of the transport subsystem obtain their services. * 00014 * * 00015 ******************************************************************************* 00016 * Copyright (c) 1997-$now By Author. This program is free software; you can * 00017 * redistribute it and/or modify it under the terms of the GNU General Public * 00018 * License as published by the Free Software Foundation; either version 2 of * 00019 * the License or (at your option) any later version. This is online at: * 00020 * http://www.fsf.org/copyleft/gpl.html * 00021 * Please send any updates to: fred@gruntose.com * 00022 \*****************************************************************************/ 00023 00024 #include <basis/portable.h> 00025 #include <mfc_ext/tiny_shell.h> 00026 #include <win_ext/tag_win.h> 00027 00028 class waldo_attachment : public tagged_window 00029 { 00030 public: 00031 #define GATEWAY_TAG_NAME "waldo_win" 00032 waldo_attachment() : tagged_window(tag(GATEWAY_TAG_NAME)) {} 00033 }; 00034 00036 00037 class test_waldo : public tiny_shell 00038 { 00039 public: 00040 test_waldo(); 00041 virtual ~test_waldo(); 00042 00043 IMPLEMENT_CLASS_NAME("test_waldo"); 00044 00045 private: 00046 waldo_attachment attachment; 00047 }; 00048 00049 #endif 00050
1.5.1