home *** CD-ROM | disk | FTP | other *** search
- // \EXAMPLES\EX17013B.H - Exception.H
-
- //----------------------------------------------------------
- // Example of template container classes implenenting stacks.
- // This version includes templates but no exception handling.
- //----------------------------------------------------------
- //----------------------------------------------------------
- // Exception handling is supported only by
- // the IBM C++ Set/2 compiler
- // Templates are not supported by
- // the Microcoft Visual C++ compiler
- // Two versions of this program are included:
- // EX1701I.EXE - for IBM CSet II
- // EX1701B.EXE - for Borland Turbo C++
- //----------------------------------------------------------
- // Files in this example:
- // %F,15,EX17010B.H%EX17010B.H Stack.H base class stack
- // %F,15,EX17011B.H%EX17011B.H AStack.H derived array stack
- // %F,15,EX17011B.CPP%EX17011B.CPP AStack.CPP
- // %F,15,EX17012B.H%EX17012B.H LLStack.H derived linked list stack
- // %F,15,EX17012B.CPP%EX17012B.CPP LLStack.CPP
- // EX17013B.H this file -- dummy Exception.H
- // %F,15,EX17014B.H%EX17014B.H Iterator.H iterator class
- // %F,15,EX1701B.CPP%EX1701B.CPP main() without exception handling
- // %F,15,EX1701.CPP% EX1701.CPP main() with exception handling
- //----------------------------------------------------------
- #ifndef INCL_EX17013_H
- #define INCL_EX17013_H
-
- // Exception handling not done in Borland
-
- #endif
-