home *** CD-ROM | disk | FTP | other *** search
- //**********************************************************************
- // DIVE Laboratories, Inc.
- // Copyright(c) 1995
- // All rights reserved.
- // FILE: STYLE.HPP
- //
- // DESCRIPTION
- // This header provides the class definition for the
- // styleClass
- //
- //**********************************************************************
- #ifndef STYLE
- #define STYLE
-
- #include "slink.hpp"
-
- class styleClass {
-
- private:
-
-
- public:
-
- static sLinkClass list;
- int rate;
- int phase;
-
- virtual void style(void) = 0;
-
- styleClass(int styleRate, int stylePhase);
- styleClass();
- virtual ~styleClass();
-
- };
-
- #endif
-