home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1997
- #
- # File: @(#)vssystemve.tcl /main/hindenburg/4
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)vssystemve.tcl /main/hindenburg/4 16 May 1997 Copyright 1997 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
-
- # This class represents a VCM System system for code
- # generation.
-
- Class VSSystemVersion : {SystemVersion} {
- constructor
- method destructor
- method promoter
- method getObjHandler
- }
-
- constructor VSSystemVersion {class this name} {
- set this [SystemVersion::constructor $class $this $name]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method VSSystemVersion::destructor {this} {
- # Start destructor user section
- # End destructor user section
- }
-
-
- # Initialize this system: initialize customization.
- #
- method VSSystemVersion::promoter {this} {
- VSTypeMapper new $this
- [$this typeMapper] initialize
- require u_vcm.tcl
- }
-
-
- # Create a CustObjHandler if it didn't exist yet,
- # return it.
- #
- method VSSystemVersion::getObjHandler {this} {
- global fstorage::custObjHandler
- set custObjHandler ${fstorage::custObjHandler}
-
- if { $custObjHandler == "" } {
- set custObjHandler [CustObjHandler new]
- set fstorage::custObjHandler $custObjHandler
- $custObjHandler setCurrentContext
- }
-
- return $custObjHandler
- }
-
- # Do not delete this line -- regeneration end marker
-
-