home *** CD-ROM | disk | FTP | other *** search
- #ifndef NDISPLAY_H
- #define NDISPLAY_H
- //-----------------------------------------------------------------
-
- #include "perform.h"
-
- class NumericDisplay : public Performer
- {
- public:
- NumericDisplay(Director*,char* lib,int initvalue,int maxdigits,int x,int y);
- void update();
- void set(int value);
- private:
- void initialize();
- private:
- int init_flag;
- int value;
- int x,y;
- int h,w;
- int max;
- char gfxlib[13];
- };
-
- //-----------------------------------------------------------------
- #endif
-