Files
lammps/tools/phonon/input.h
2023-05-01 20:14:52 -04:00

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