1234567891011121314151617 |
- /** This is an addition to the GPCP runtime support.
- *
- * Written August 2001, John Gough.
- */
- package CP.CPJrts;
- /* ==================================================================== *
- * Abstract base type for uplevel addressing *
- * ==================================================================== */
- public abstract class XHR
- {
- public XHR prev;
- }
- /* ==================================================================== */
|