修正一些選字機制 C++ 檔案 #include 不完整的問題
This commit is contained in:
parent
3760d24350
commit
a17438b67a
|
@ -28,6 +28,8 @@
|
|||
#ifndef Bigram_h
|
||||
#define Bigram_h
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "KeyValuePair.h"
|
||||
|
||||
namespace Formosa {
|
||||
|
|
|
@ -199,7 +199,7 @@ namespace Formosa {
|
|||
}
|
||||
}
|
||||
|
||||
const string BlockReadingBuilder::Join(vector<string>::const_iterator begin, vector<string>::const_iterator end, const string& separator)
|
||||
inline const string BlockReadingBuilder::Join(vector<string>::const_iterator begin, vector<string>::const_iterator end, const string& separator)
|
||||
{
|
||||
string result;
|
||||
for (vector<string>::const_iterator iter = begin ; iter != end ; ) {
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#ifndef KeyValuePair_h
|
||||
#define KeyValuePair_h
|
||||
|
||||
#include <ostream>
|
||||
#include <string>
|
||||
|
||||
namespace Formosa {
|
||||
|
|
Loading…
Reference in New Issue