home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ocl150a.zip / OCL / Samples / Editor / Source / Editor.hpp < prev    next >
C/C++ Source or Header  |  1996-08-12  |  473b  |  34 lines

  1. // OCL Sample 
  2.  
  3. // Editor.hpp
  4.  
  5. #include <ocl.hpp>
  6. #include <OFrame.hpp>
  7. #include <OEditor.hpp>
  8. #include <OPMException.hpp>
  9.  
  10. #include "..\Source\Editor.h"
  11.  
  12. typedef class Editor *pEditor;
  13.  
  14. class Editor 
  15.   : public OApp, 
  16.     public OFrame
  17. {
  18.  public:
  19.    OEditor    *textfield; 
  20.  
  21.    Editor();
  22.    ~Editor(); 
  23.  
  24.    virtual PSZ isOfType() const;
  25.  
  26.    BOOL TasklistKill();
  27.  
  28.    BOOL OCommand(ULONG msg, MPARAM mp1, MPARAM mp2);
  29. };
  30.  
  31.  
  32.  
  33. // end of source
  34.