10 lines
125 B
C++
10 lines
125 B
C++
#ifndef ACPA_READ_H
|
|
#define ACPA_READ_H
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
|
|
std::string read(std::istream& file);
|
|
|
|
#endif
|