home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ooxdb210.zip / ooxlogical.pdl < prev    next >
Text File  |  1996-11-13  |  674b  |  41 lines

  1. #ifndef logical_idl
  2. #define logical_idl
  3.  
  4. #include "ooxfield.idl"
  5. #include <somcls.idl>
  6.  
  7. interface ooxlogical : ooxfield
  8.  
  9. //---Symbol parentComment is undefined---
  10. {
  11.  
  12.   void define(inout somInitCtrl ctrl, in string name);
  13.   void put_boolean(in boolean booleanv);
  14.   boolean get_boolean();
  15.  
  16. #ifdef __SOMIDL__
  17.   implementation {
  18.  
  19.     releaseorder:
  20.     define,
  21.     put_boolean,
  22.     get_boolean;
  23.  
  24.     filestem = ooxlogical;
  25. #if 1
  26.     callstyle = oidl;
  27. #endif
  28.  
  29.     passthru C_ph_before =  ""
  30. "#include \"ooxbase.h\"";
  31.  
  32.     somDefaultInit: override, init;
  33.     somUninit: override;
  34.     define: init;
  35.  
  36.   };
  37. #endif /* __SOMIDL__ */
  38. };
  39.  
  40. #endif  
  41.