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