home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
revengvacp.tcl
< prev
next >
Wrap
Text File
|
1997-10-24
|
1KB
|
49 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1997
#
# File: @(#)revengvacp.tcl /main/titanic/1
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)revengvacp.tcl /main/titanic/1 24 Oct 1997 Copyright 1997 Cayenne Software Inc.
# Start user added include file section
# End user added include file section
require "revengdlg.tcl"
Class RevEngVacppDlg : {RevEngDlg} {
method destructor
constructor
method getOptions
}
method RevEngVacppDlg::destructor {this} {
# Start destructor user section
# End destructor user section
$this RevEngDlg::destructor
}
constructor RevEngVacppDlg {class this name} {
set this [RevEngDlg::constructor $class $this $name "VisualAge for C++" "reveng_va"]
interface CheckButton $this.top.association {
label "Reverse engineer associations"
state 1
}
return $this
}
method RevEngVacppDlg::getOptions {this} {
set script [$this RevEngDlg::getOptions]
if [$this.top.association state] {
append script " -a rev_assoc.tcl"
}
return $script
}
# Do not delete this line -- regeneration end marker