home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / ada_util.tcl < prev    next >
Text File  |  1997-10-20  |  1KB  |  41 lines

  1. ###########################################################################
  2. ##
  3. ##  Copyright (c) 1996 by Cadre Technologies Inc.
  4. ##                          and Scientific Toolworks Inc.
  5. ##
  6. ##  This software is furnished under a license and may be used only in
  7. ##  accordance with the terms of such license and with the inclusion of
  8. ##  the above copyright notice. This software or any other copies thereof
  9. ##  may not be provided or otherwise made available to any other person.
  10. ##  No title to and ownership of the software is hereby transferred.
  11. ##
  12. ##  The information in this software is subject to change without notice
  13. ##  and should not be construed as a commitment by Cadre Technologies Inc.
  14. ##  or Scientific Toolworks Inc.
  15. ##
  16. ###########################################################################
  17.  
  18. proc find_ada_file_types {} {
  19.     global ada_spec_type
  20.     global ada_body_type
  21.     global ada_sep_type
  22.  
  23.     set ada_spec_type "ada_spec"
  24.     set ada_body_type "ada_body"
  25.     set ada_sep_type "ada_subunit"
  26. }
  27.  
  28. proc ada83_echo {s} {
  29.     puts stdout $s
  30. }
  31.  
  32. proc echo {s} {
  33. #    puts stdout $s
  34. }
  35.  
  36. proc incr_component_count {} {
  37.    global g_component_count
  38.  
  39.    incr g_component_count 1
  40. }
  41.