1234567891011121314 |
- #ifndef __INVALID__
- #define __INVALID__
- #include <cctype>
- using namespace std;
- class Invalid{
- string r_;
- string l_;
- public:
- Invalid(string reason,string line):r_(reason), l_(line){}
- string reason()const{return r_;}
- string line() const{ return l_;}
- };
- #endif
|