cppjieba/cppcommon/io_functs.h
2013-09-11 19:15:07 +08:00

15 lines
338 B
C++

/************************************
* file enc : utf8
* author : wuyanyi09@gmail.com
************************************/
#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