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 >
Wrap
Text File
|
1997-08-29
|
2KB
|
75 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1997
#
# File: @(#)vssystemve.tcl /main/titanic/6
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)vssystemve.tcl /main/titanic/6 29 Aug 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
method isBinaryFile
}
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 moduleHandler [ModuleHandler new]
set custObjHandler [CustObjHandler new $moduleHandler]
set fstorage::custObjHandler $custObjHandler
$custObjHandler setCurrentContext
}
return $custObjHandler
}
# Return 0 for performance reasons, in otsh
# we are not interested in finding binary types (hopefully).
#
method VSSystemVersion::isBinaryFile {this name} {
return 0
}
# Do not delete this line -- regeneration end marker