Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
ReadFile.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <alib/string>
9
10namespace cli {
11
12namespace builtin {
13
17class ReadFile {
18public:
26 static std::string read ( const std::string & filename );
27};
28
29} /* namespace builtin */
30
31} /* namespace cli */
32
Definition: ReadFile.h:17
static std::string read(const std::string &filename)
Definition: ReadFile.cpp:16
Definition: Arg.h:11