1234567891011121314151617 |
- #ifndef _POSITION_H
- #define _POSITION_H
- #include <iostream>
- class Position
- {
- public:
- char posSym, posNum;
- Position();
- Position(char posSym, char posNum);
- Position(char posSym, int posNum);
- friend std::ostream& operator <<(std::ostream& out, Position& p);
- };
- #endif
|