libepp_nicbr
FileUtil.H
Go to the documentation of this file.
1 /* ${copyright}$ */
2 /* $Id: FileUtil.H 1086 2010-12-10 13:07:28Z eduardo $ */
7 #ifndef __FILEUTIL_H__
8 #define __FILEUTIL_H__
9 
10 #include <string>
11 
12 #include "libepp_nicbr.H"
13 
14 LIBEPP_NICBR_NS_BEGIN
15 
16 using std::string;
17 
19 class FileUtil
20 {
21 public:
23 
27  static string read_file(const string &filename);
28 };
29 
30 LIBEPP_NICBR_NS_END
31 #endif //__FILEUTIL_H__
Project defines.
static string read_file(const string &filename)
Used for read a file.
FileUtil Class: File Manipulation Utilities.
Definition: FileUtil.H:19