home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)xtool.tcl 1.8
- # Author: Marcel Bancken
- # Description: Instantiation of Xtool.
- #---------------------------------------------------------------------------
- # SccsId = @(#)xtool.tcl 1.8 22 Jan 1996 Copyright 1994 Westmount Technology
-
- source [m4_path_name tcl libocl.tcl]
-
- require platform.tcl
- require procs.tcl
- require messagehdl.tcl
- require clxtool.tcl
-
- proc usage {} {
- error "Usage: otk xtool.tcl -- <dispatcher> <command> \[directory\]"
- }
- if {[llength $argv] < 2} {
- usage
- exit 1
- }
-
- ClXtool new .main [lindex $argv 0] [lindex $argv 1] [lindex $argv 2]
-