home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / vssystemve.tcl < prev    next >
Text File  |  1997-08-29  |  2KB  |  75 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)vssystemve.tcl    /main/titanic/6
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)vssystemve.tcl    /main/titanic/6   29 Aug 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. # This class represents a VCM System system for code
  16. # generation.
  17.  
  18. Class VSSystemVersion : {SystemVersion} {
  19.     constructor
  20.     method destructor
  21.     method promoter
  22.     method getObjHandler
  23.     method isBinaryFile
  24. }
  25.  
  26. constructor VSSystemVersion {class this name} {
  27.     set this [SystemVersion::constructor $class $this $name]
  28.     # Start constructor user section
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method VSSystemVersion::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36. }
  37.  
  38.  
  39. # Initialize this system: initialize customization.
  40. #
  41. method VSSystemVersion::promoter {this} {
  42.     VSTypeMapper new $this
  43.     [$this typeMapper] initialize
  44.     require u_vcm.tcl    
  45. }
  46.  
  47.  
  48. # Create a CustObjHandler if it didn't exist yet,
  49. # return it.
  50. #
  51. method VSSystemVersion::getObjHandler {this} {
  52.     global fstorage::custObjHandler
  53.     set custObjHandler ${fstorage::custObjHandler}
  54.  
  55.     if { $custObjHandler == "" } {
  56.     set moduleHandler [ModuleHandler new]
  57.     set custObjHandler [CustObjHandler new $moduleHandler]
  58.     set fstorage::custObjHandler $custObjHandler
  59.     $custObjHandler setCurrentContext
  60.     }
  61.  
  62.     return $custObjHandler
  63. }
  64.  
  65.  
  66. # Return 0 for performance reasons, in otsh
  67. # we are not interested in finding binary types (hopefully).
  68. #
  69. method VSSystemVersion::isBinaryFile {this name} {
  70.     return 0
  71. }
  72.  
  73. # Do not delete this line -- regeneration end marker
  74.  
  75.