// $Revision: 1.5 $ // Copyright (C) 1994-1995 Taligent, Inc. All rights reserved. void CallerMain(); void main() { // CallerMain() is the real main program for this app. // This binary is here so that the "real" main-program can // instantiate templatized classes and call rtti functions on them. // // The rule is: If you define a type by instantiating a // template (e.g., TDequeOf obj;) it has to be // in a library somewhere. If the only place that you use // a type is in a binary, the runtime will throw an exception. CallerMain(); }