home *** CD-ROM | disk | FTP | other *** search
- #ifndef __STACK_H
- #define __STACK_H
-
- // ╔════════════════════════════════════════════════╗
- // ║ Stack.h, stack.cpp ║
- // ╟────────────────────────────────────────────────╢
- // ║ First-in, last-out list ║
- // ╟────────────────────────────────────────────────╢
- // ║ Written by Gus Smedstad ║
- // ╟────────────────────────────────────────────────╢
- // ║ Copyright 1990-91 NoGate Consulting ║
- // ╚════════════════════════════════════════════════╝
- #ifndef __LINKLIST_H
- #include "linklist.h"
- #endif
-
- class stack : public linked_list {
- public:
- containable *item(); // contents of top item
- };
-
- #endif