Newer
Older
/*
* ReadFile.h
*
* Created on: 16. 8. 2017
* Author: Jan Travnicek
*/
#ifndef _READ_FILE_H_
#define _READ_FILE_H_
namespace cli {
namespace builtin {
class ReadFile {
public:
static std::string read ( const std::string & filename );
};
} /* namespace builtin */
} /* namespace cli */
#endif /* _READ_FILE_H_ */