home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / volume_3.zip / WIN_IT.H < prev    next >
C/C++ Source or Header  |  1995-11-02  |  412b  |  30 lines

  1. #ifndef __WIN_T
  2.     #define __WIN_T
  3.  
  4.  
  5. class Windw
  6. {
  7.  
  8. private:
  9.  
  10.       int *buffer;
  11.  
  12. protected:
  13.       int Upper_Left_X;
  14.       int Upper_Left_Y;
  15.       int Length_X;
  16.       int Height_Y;
  17.       int border;
  18.       int buffered;
  19.  
  20. public:
  21.     Windw(int x,int y,int w,int h,int bdr,int buf);
  22.     void DrawWindows();
  23.     int RemoveWindows();
  24.     int Store_BackGround();
  25.  
  26. };
  27. #include "c:\tc\win_it.cpp"
  28.  
  29. #endif
  30.