home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / MYAUTO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-19  |  408 b   |  19 lines

  1. #ifndef myautoH
  2. #define myautoH
  3.  
  4. #include <OleAuto.hpp>
  5.  
  6. class TMyAuto : public TAutoObject{
  7.   private:
  8.          String FMyProp;
  9.          String __fastcall GetMyProp();
  10.          void __fastcall SetMyProp(String S);
  11.   public:
  12.          __fastcall TMyAuto();
  13.  
  14.   __automated:
  15.         void __fastcall ShowDialog();
  16.         __property String MyProp = {read=GetMyProp, write=SetMyProp};
  17. };
  18. #endif
  19.