home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / micro.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-01  |  237 b   |  15 lines

  1. #ifndef __MICRO_H
  2. #define __MICRO_H
  3.  
  4. #include "window.h"
  5. #include "tools.h"
  6.  
  7. class Micro : public Window
  8.     {
  9.     public:
  10.     Micro(rect coord);
  11.     virtual void show();
  12.     virtual void exe(int act);
  13.     };
  14.  
  15. #endif __MICRO_H