home *** CD-ROM | disk | FTP | other *** search
- #ifndef DRAWBRIDGEQ_H
- #define DRAWBRIDGEQ_H
-
- // $Header: /afs/alw.nih.gov/unix/sun4_40c/usr/local/src/nihcl-3.0/share/ex/RCS/DrawBridgeQ.h,v 3.0 90/05/15 22:43:32 kgorlen Rel $
-
- // DrawBridgeQ.h -- Draw Bridge Vehicle Queue LinkedList
-
- #ifndef MI
- #define MI
- #endif
-
- #include "VehicleQ.h"
-
- class WaterVhcl;
-
- class DrawBridgeQ: public VehicleQ {
- DECLARE_MEMBERS(DrawBridgeQ);
- #ifndef BUG_38
- // internal <<AT&T C++ Translator 2.00 06/30/89>> error: bus error (or something nasty like that)
- protected: // storer() functions for object I/O
- virtual void storer(OIOofd& fd) const
- { VehicleQ::storer(fd); };
- virtual void storer(OIOout& strm) const
- { VehicleQ::storer(strm); };
- #endif
- public:
- DrawBridgeQ() {}
- virtual void addVehicle(WaterVhcl&);
- };
-
- #endif
-