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

  1. #ifndef ooxdate_idl
  2. #define ooxdate_idl
  3.  
  4. #include "ooxfield.idl"
  5. #include <somcls.idl>
  6.  
  7. interface ooxdate : ooxfield
  8.  
  9. //---Symbol parentComment is undefined---
  10. {
  11.   void define(inout somInitCtrl ctrl, in string name);
  12.   short  get_month();
  13.   short  get_day();
  14.   short  get_year();
  15.   void   put_month(in short month);
  16.   void   put_day(in short day);
  17.   void  put_year(in short year);
  18.  
  19. #ifdef __SOMIDL__
  20.   implementation {
  21.  
  22.     releaseorder:
  23.     define,
  24.     get_month,
  25.     get_day,
  26.     get_year,
  27.     put_month,
  28.     put_day,
  29.     put_year;
  30.  
  31.     filestem = ooxdate;
  32. #if 1
  33.     callstyle = oidl;
  34. #endif
  35.  
  36.     passthru C_ph_before =  ""
  37. "#include \"ooxbase.h\"";
  38.     somDefaultInit: override, init;
  39.     somUninit: override;
  40.     define: init;
  41.   };
  42. #endif /* __SOMIDL__ */
  43. };
  44.  
  45. #endif  /* date_idl */
  46.