Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2017-02-16 22:30:07 +0300
committerHieu Hoang <hieuhoang@gmail.com>2017-02-16 22:30:07 +0300
commitc037962feb03350ff54006195e328e7c3aa5e2b5 (patch)
treec714b7d509b0d67e0ecb1989098b94c99984fa9c /probingpt
parentf5c667ea1d68d649c122fcefdc52cf5123093ada (diff)
.hh -> .h. Will be picked up by beautifier
Diffstat (limited to 'probingpt')
-rw-r--r--probingpt/CreateProbingPT.cpp2
-rw-r--r--probingpt/StoreTarget.cpp4
-rw-r--r--probingpt/hash.cpp2
-rw-r--r--probingpt/hash.h (renamed from probingpt/hash.hh)0
-rw-r--r--probingpt/line_splitter.cpp2
-rw-r--r--probingpt/line_splitter.h (renamed from probingpt/line_splitter.hh)5
-rw-r--r--probingpt/probing_hash_utils.cpp2
-rw-r--r--probingpt/probing_hash_utils.h (renamed from probingpt/probing_hash_utils.hh)0
-rw-r--r--probingpt/querying.cpp2
-rw-r--r--probingpt/querying.h (renamed from probingpt/querying.hh)10
-rw-r--r--probingpt/storing.cpp4
-rw-r--r--probingpt/storing.h (renamed from probingpt/storing.hh)6
-rw-r--r--probingpt/util.cpp2
-rw-r--r--probingpt/util.h (renamed from probingpt/util.hh)0
-rw-r--r--probingpt/vocabid.cpp2
-rw-r--r--probingpt/vocabid.h (renamed from probingpt/vocabid.hh)2
16 files changed, 22 insertions, 23 deletions
diff --git a/probingpt/CreateProbingPT.cpp b/probingpt/CreateProbingPT.cpp
index e1b7a40d6..6be0b402f 100644
--- a/probingpt/CreateProbingPT.cpp
+++ b/probingpt/CreateProbingPT.cpp
@@ -1,7 +1,7 @@
#include <string>
#include <boost/program_options.hpp>
#include "util/usage.hh"
-#include "storing.hh"
+#include "storing.h"
#include "InputFileStream.h"
#include "OutputFileStream.h"
#include "moses/Util.h"
diff --git a/probingpt/StoreTarget.cpp b/probingpt/StoreTarget.cpp
index 6a041512e..8c33b96a2 100644
--- a/probingpt/StoreTarget.cpp
+++ b/probingpt/StoreTarget.cpp
@@ -6,8 +6,8 @@
*/
#include <boost/foreach.hpp>
#include "StoreTarget.h"
-#include "line_splitter.hh"
-#include "probing_hash_utils.hh"
+#include "line_splitter.h"
+#include "probing_hash_utils.h"
#include "OutputFileStream.h"
#include "moses2/legacy/Util2.h"
diff --git a/probingpt/hash.cpp b/probingpt/hash.cpp
index e3959a87b..6ecbae909 100644
--- a/probingpt/hash.cpp
+++ b/probingpt/hash.cpp
@@ -1,5 +1,5 @@
#include <iostream>
-#include "hash.hh"
+#include "hash.h"
using namespace std;
diff --git a/probingpt/hash.hh b/probingpt/hash.h
index 9d14e73d6..9d14e73d6 100644
--- a/probingpt/hash.hh
+++ b/probingpt/hash.h
diff --git a/probingpt/line_splitter.cpp b/probingpt/line_splitter.cpp
index 8c99369f9..c47f7bdd8 100644
--- a/probingpt/line_splitter.cpp
+++ b/probingpt/line_splitter.cpp
@@ -1,4 +1,4 @@
-#include "line_splitter.hh"
+#include "line_splitter.h"
namespace probingpt
{
diff --git a/probingpt/line_splitter.hh b/probingpt/line_splitter.h
index e568270e2..e8302151b 100644
--- a/probingpt/line_splitter.hh
+++ b/probingpt/line_splitter.h
@@ -1,13 +1,12 @@
#pragma once
+#include <vector>
+#include <cstdlib> //atof
#include "util/string_piece.hh"
#include "util/tokenize_piece.hh"
#include "util/file_piece.hh"
-#include <vector>
-#include <cstdlib> //atof
#include "util/string_piece.hh" //Tokenization and work with StringPiece
#include "util/tokenize_piece.hh"
-#include <vector>
namespace probingpt
{
diff --git a/probingpt/probing_hash_utils.cpp b/probingpt/probing_hash_utils.cpp
index 80f9dee81..e64da72c4 100644
--- a/probingpt/probing_hash_utils.cpp
+++ b/probingpt/probing_hash_utils.cpp
@@ -1,5 +1,5 @@
#include <iostream>
-#include "probing_hash_utils.hh"
+#include "probing_hash_utils.h"
#include "util/file.hh"
namespace probingpt
diff --git a/probingpt/probing_hash_utils.hh b/probingpt/probing_hash_utils.h
index a21236a08..a21236a08 100644
--- a/probingpt/probing_hash_utils.hh
+++ b/probingpt/probing_hash_utils.h
diff --git a/probingpt/querying.cpp b/probingpt/querying.cpp
index bd104b35c..e71c79a98 100644
--- a/probingpt/querying.cpp
+++ b/probingpt/querying.cpp
@@ -1,4 +1,4 @@
-#include "querying.hh"
+#include "querying.h"
#include "util/exception.hh"
#include "moses2/legacy/Util2.h"
diff --git a/probingpt/querying.hh b/probingpt/querying.h
index 74d7e3f6b..bdae9e89c 100644
--- a/probingpt/querying.hh
+++ b/probingpt/querying.h
@@ -3,14 +3,14 @@
#include <boost/iostreams/device/mapped_file.hpp>
#include <boost/unordered_map.hpp>
#include <sys/stat.h> //For finding size of file
-#include "vocabid.hh"
#include <algorithm> //toLower
#include <deque>
-#include "probing_hash_utils.hh"
-#include "hash.hh" //Includes line splitter
-#include "line_splitter.hh"
+#include "vocabid.h"
+#include "probing_hash_utils.h"
+#include "hash.h" //Includes line splitter
+#include "line_splitter.h"
+#include "util.h"
#include "moses2/legacy/Util2.h"
-#include "util.hh"
namespace probingpt
{
diff --git a/probingpt/storing.cpp b/probingpt/storing.cpp
index bf55042c9..72e61c904 100644
--- a/probingpt/storing.cpp
+++ b/probingpt/storing.cpp
@@ -1,7 +1,7 @@
#include <sys/stat.h>
#include <boost/foreach.hpp>
-#include "line_splitter.hh"
-#include "storing.hh"
+#include "line_splitter.h"
+#include "storing.h"
#include "StoreTarget.h"
#include "StoreVocab.h"
#include "moses2/legacy/Util2.h"
diff --git a/probingpt/storing.hh b/probingpt/storing.h
index 4efd1a450..1243a6df8 100644
--- a/probingpt/storing.hh
+++ b/probingpt/storing.h
@@ -10,12 +10,12 @@
#include <queue>
#include <sys/stat.h> //mkdir
-#include "hash.hh" //Includes line_splitter
-#include "probing_hash_utils.hh"
+#include "hash.h" //Includes line_splitter
+#include "probing_hash_utils.h"
+#include "vocabid.h"
#include "util/file_piece.hh"
#include "util/file.hh"
-#include "vocabid.hh"
namespace probingpt
{
diff --git a/probingpt/util.cpp b/probingpt/util.cpp
index 004da3b35..cf4edb81a 100644
--- a/probingpt/util.cpp
+++ b/probingpt/util.cpp
@@ -1,4 +1,4 @@
-#include "util.hh"
+#include "util.h"
#include "util/exception.hh"
namespace probingpt
diff --git a/probingpt/util.hh b/probingpt/util.h
index b1e2ad0b9..b1e2ad0b9 100644
--- a/probingpt/util.hh
+++ b/probingpt/util.h
diff --git a/probingpt/vocabid.cpp b/probingpt/vocabid.cpp
index d1a14d7a8..81ca261de 100644
--- a/probingpt/vocabid.cpp
+++ b/probingpt/vocabid.cpp
@@ -1,5 +1,5 @@
#include <boost/foreach.hpp>
-#include "vocabid.hh"
+#include "vocabid.h"
#include "StoreVocab.h"
#include "moses2/legacy/Util2.h"
diff --git a/probingpt/vocabid.hh b/probingpt/vocabid.h
index 07837fde8..e04a9180a 100644
--- a/probingpt/vocabid.hh
+++ b/probingpt/vocabid.h
@@ -8,7 +8,7 @@
#include <vector>
#include <map> //Container
-#include "hash.hh" //Hash of elements
+#include "hash.h" //Hash of elements
#include "util/string_piece.hh" //Tokenization and work with StringPiece
#include "util/tokenize_piece.hh"