#ifndef mioINDX_RANGE_H #define mioINDX_RANGE_H /******************************************************************************* * MPIA - MIDI project * * "@(#) $Id: vltsccm Exp $" * * who when what * -------- -------- ---------------------------------------------- * mathar 2002-10-13 created * mathar 2003-05-06 use namespace std with gcc 3.2.1 */ /************************************************************************ * *---------------------------------------------------------------------- */ #ifndef __cplusplus #error This is a C++ include file and cannot be used from plain C #endif #include using namespace std ; class mioINDX_RANGE : public set { public: // indicate whether 1 should be subtracted from the indexes // and whether all numbers that result ought be strictly >= 0. bool isCindx ; mioINDX_RANGE(); mioINDX_RANGE(const char *const strpattern,bool cstyle=true); // ~mioINDX_RANGE(); protected: private: }; ostream & operator<<(ostream &os, const mioINDX_RANGE & someindx) ; #endif