home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / ilcongen.tcl < prev    next >
Text File  |  1996-05-29  |  1KB  |  54 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)ilcongen.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ilcongen.tcl    1.3   31 Oct 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class IlConGen : {Object} {
  16.     method destructor
  17.     constructor
  18.     method openAsc
  19.     attribute ascPath
  20.     attribute templatePath
  21.     attribute section
  22. }
  23.  
  24. method IlConGen::destructor {this} {
  25.     # Start destructor user section
  26.     # End destructor user section
  27. }
  28.  
  29. constructor IlConGen {class this name section} {
  30.     set this [Object::constructor $class $this $name]
  31.  
  32.     $this section $section
  33.     $this ascPath [$section docLocation]
  34.     set version [[[$section document] editor] version]
  35.     set type [string tolower [$section type]]
  36.     catch {$this templatePath [m4_path_name etc il${version}${type}.asc]}]
  37.  
  38.     return $this
  39. }
  40.  
  41. method IlConGen::openAsc {this} {
  42.  
  43.     # Open the ASC-file
  44.     if {[catch {set asc [open [$this ascPath] w]} rsn]} {
  45.         wmtkerror "Error on opening '[$this ascPath]' for writing: $rsn"
  46.         return ""
  47.     }
  48.  
  49.     return $asc
  50. }
  51.  
  52. # Do not delete this line -- regeneration end marker
  53.  
  54.