cppjieba/cppcommon/io_functs.h
2013-06-23 22:31:51 +08:00

11 lines
203 B
C++

#ifndef CPPCOMMON_IO_FUNCTS_H
#define CPPCOMMON_IO_FUNCTS_H
#include <fstream>
#include <iostream>
namespace CPPCOMMON
{
using namespace std;
string loadFile2Str(const char * const filepath);
}
#endif