18 lines
177 B
C++
18 lines
177 B
C++
#ifndef INPUT_H
|
|
#define INPUT_H
|
|
|
|
#include <cstdio>
|
|
|
|
class UserInput {
|
|
public:
|
|
UserInput(int);
|
|
~UserInput();
|
|
|
|
void read_stdin(char *);
|
|
|
|
private:
|
|
FILE *fp;
|
|
|
|
};
|
|
#endif
|