Merge "Move files for headerPolicy to policyimpl."
commit
3cc550248b
|
@ -54,8 +54,6 @@ LATIN_IME_CORE_SRC_FILES := \
|
|||
$(addprefix suggest/core/dictionary/, \
|
||||
bigram_dictionary.cpp \
|
||||
binary_dictionary_format_utils.cpp \
|
||||
binary_dictionary_header.cpp \
|
||||
binary_dictionary_header_reading_utils.cpp \
|
||||
bloom_filter.cpp \
|
||||
byte_array_utils.cpp \
|
||||
dictionary.cpp \
|
||||
|
@ -71,6 +69,8 @@ LATIN_IME_CORE_SRC_FILES := \
|
|||
suggest/core/session/dic_traverse_session.cpp \
|
||||
$(addprefix suggest/policyimpl/dictionary/, \
|
||||
bigram/bigram_list_reading_utils.cpp \
|
||||
header/header_policy.cpp \
|
||||
header/header_reading_utils.cpp \
|
||||
shortcut/shortcut_list_reading_utils.cpp \
|
||||
dictionary_structure_with_buffer_policy_factory.cpp \
|
||||
dynamic_patricia_trie_node_reader.cpp \
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
#include <stdint.h>
|
||||
|
||||
#include "defines.h"
|
||||
#include "suggest/core/dictionary/binary_dictionary_header.h"
|
||||
#include "suggest/core/policy/dictionary_structure_with_buffer_policy.h"
|
||||
#include "suggest/policyimpl/dictionary/bigram/bigram_list_policy.h"
|
||||
#include "suggest/policyimpl/dictionary/header/header_policy.h"
|
||||
#include "suggest/policyimpl/dictionary/shortcut/shortcut_list_policy.h"
|
||||
|
||||
namespace latinime {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "suggest/core/dictionary/binary_dictionary_header.h"
|
||||
#include "suggest/policyimpl/dictionary/header/header_policy.h"
|
||||
|
||||
namespace latinime {
|
||||
|
|
@ -21,11 +21,10 @@
|
|||
|
||||
#include "defines.h"
|
||||
#include "suggest/core/policy/dictionary_header_structure_policy.h"
|
||||
#include "suggest/core/dictionary/binary_dictionary_header_reading_utils.h"
|
||||
#include "suggest/policyimpl/dictionary/header/header_reading_utils.h"
|
||||
|
||||
namespace latinime {
|
||||
|
||||
// TODO: Move to policyimpl.
|
||||
class HeaderPolicy : public DictionaryHeaderStructurePolicy {
|
||||
public:
|
||||
explicit HeaderPolicy(const uint8_t *const dictBuf)
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "suggest/core/dictionary/binary_dictionary_header_reading_utils.h"
|
||||
#include "suggest/policyimpl/dictionary/header/header_reading_utils.h"
|
||||
|
||||
#include <cctype>
|
||||
#include <cstdlib>
|
|
@ -23,7 +23,6 @@
|
|||
|
||||
namespace latinime {
|
||||
|
||||
// TODO: Move to policyimpl.
|
||||
class HeaderReadingUtils {
|
||||
public:
|
||||
typedef uint16_t DictionaryFlags;
|
|
@ -20,9 +20,9 @@
|
|||
#include <stdint.h>
|
||||
|
||||
#include "defines.h"
|
||||
#include "suggest/core/dictionary/binary_dictionary_header.h"
|
||||
#include "suggest/core/policy/dictionary_structure_with_buffer_policy.h"
|
||||
#include "suggest/policyimpl/dictionary/bigram/bigram_list_policy.h"
|
||||
#include "suggest/policyimpl/dictionary/header/header_policy.h"
|
||||
#include "suggest/policyimpl/dictionary/shortcut/shortcut_list_policy.h"
|
||||
|
||||
namespace latinime {
|
||||
|
|
Loading…
Reference in New Issue