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