//Készítette:Gregorics Tibor
//Dátum:     2010.02.26.
//Feladat:   segédfüggvények számok billentyűzetről való beolvasásához

#ifndef READ_H
#define READ_H

#include <string>

bool Nat(int n) ;
bool Mark(int n);
bool All (int n) ;

int ReadInt(const std::string &msg, const std::string &err, bool check(int) = All);

#endif
