home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / pstoedit.zip / source.zip / pstoedit.2.50 / src / bc5gui / winp2edc.cpp < prev    next >
C/C++ Source or Header  |  1996-12-12  |  1KB  |  51 lines

  1. /*
  2.    winp2edc.cpp : This file is part of pstoedit
  3.    Source file for implementation of TWinp2eDlgClient (TDialog).
  4.  
  5.    Copyright (C) 1996 Jens Weber, wr@lzh1.lzh.de
  6.  
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation; either version 2 of the License, or
  10.     (at your option) any later version.
  11.  
  12.     This program is distributed in the hope that it will be useful,
  13.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.     GNU General Public License for more details.
  16.  
  17.     You should have received a copy of the GNU General Public License
  18.     along with this program; if not, write to the Free Software
  19.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21. */
  22.  
  23.  
  24. #include <owl/pch.h>
  25.  
  26. #include "winp2edc.h"
  27.  
  28.  
  29. //{{TWinp2eDlgClient Implementation}}
  30.  
  31.  
  32. //--------------------------------------------------------
  33. // TWinp2eDlgClient
  34. // ~~~~~~~~~~
  35. // Construction/Destruction handling.
  36. //
  37. TWinp2eDlgClient::TWinp2eDlgClient(TWindow* parent, TResId resId, TModule* module)
  38. :
  39.   TDialog(parent, resId, module)
  40. {
  41.   // INSERT>> Your constructor code here.
  42. }
  43.  
  44.  
  45. TWinp2eDlgClient::~TWinp2eDlgClient()
  46. {
  47.   Destroy();
  48.  
  49.   // INSERT>> Your destructor code here.
  50. }
  51.