home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / wd97automa.tcl < prev    next >
Text File  |  1997-07-18  |  664b  |  26 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc. 1997
  4. #
  5. #      File:        @(#)wd97automa.tcl    /main/titanic/1
  6. #      Description:    
  7. #---------------------------------------------------------------------------
  8. # SccsId = @(#)wd97automa.tcl    /main/titanic/1 18 Jul 1997  Copyright 1997 Cayenne Software Inc.
  9.  
  10.  
  11. Class Wd97AutomationObject : {OleAutoObject} {
  12.     constructor
  13.     method destructor
  14. }
  15.  
  16. constructor Wd97AutomationObject {class this} {
  17.     set this [OleAutoObject::constructor $class $this Word.Application]
  18.     return $this
  19. }
  20.  
  21. method Wd97AutomationObject::destructor {this} {
  22.     
  23. }
  24.  
  25.  
  26.