#ifndef BALLIMITS_H #define BALLIMITS_H // ballimits.h Constants and types used by LimitInt and LimitFloat classes // Types of limits that can exist on a float or an int typedef enum { LESSTHAN, LESSTHANEQUALS, GREATERTHAN, GREATERTHANEQUALS, NONE } LimitType; const int INT_FILLER=9; // Digit repeated in default integer const int FLT_FILLER=9; // Digit used for default float const char STRING_FILLER=' '; // Spacing character used in output const LimitType DEFAULT_COMPARE=NONE; // Default Limit type const int DEFAULT_INT_LIMIT=0; // Default limit values const float DEFAULT_FLT_LIMIT=0.0f; // const int DECIMAL=10; // For calculating default numeric values #endif