home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / subimport.tcl < prev    next >
Text File  |  1997-10-20  |  1KB  |  32 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. global ada95_body_type; set ada95_body_type "ada_body"
  19. global ada95_spec_type; set ada95_spec_type "ada_spec"
  20.  
  21. proc getOoplTypesToGenerateFor {} {
  22.         return "$ada95_spec_type $ada95_body_type"
  23. }
  24.  
  25. proc getNamesNotToGenerateFor {} {
  26.         return ""
  27. }
  28.  
  29. proc supportPersistentCodeGen {} {
  30.     return 0
  31. }
  32.