diff options
author | 2014-03-05 00:11:23 -0800 | |
---|---|---|
committer | 2014-03-05 00:11:23 -0800 | |
commit | 2fb2076884efd1a1d1bae0f519a4c0127a86ce06 (patch) | |
tree | e56f7aea2a976e1013338f07cfedd9d339f9657a /native/jni/com_android_inputmethod_latin_BinaryDictionaryUtils.h | |
parent | c7ba79a95b86da51811fa6084df802f4d1d2a097 (diff) | |
parent | 287861c04b4fbf1e051597d5aae5c10c97e7ab54 (diff) | |
download | latinime-2fb2076884efd1a1d1bae0f519a4c0127a86ce06.tar.gz latinime-2fb2076884efd1a1d1bae0f519a4c0127a86ce06.tar.xz latinime-2fb2076884efd1a1d1bae0f519a4c0127a86ce06.zip |
am 287861c0: Merge "Separate utility methods from BinaryDictionary in native code."
* commit '287861c04b4fbf1e051597d5aae5c10c97e7ab54':
Separate utility methods from BinaryDictionary in native code.
Diffstat (limited to 'native/jni/com_android_inputmethod_latin_BinaryDictionaryUtils.h')
-rw-r--r-- | native/jni/com_android_inputmethod_latin_BinaryDictionaryUtils.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/native/jni/com_android_inputmethod_latin_BinaryDictionaryUtils.h b/native/jni/com_android_inputmethod_latin_BinaryDictionaryUtils.h new file mode 100644 index 000000000..38edcd20c --- /dev/null +++ b/native/jni/com_android_inputmethod_latin_BinaryDictionaryUtils.h @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef _COM_ANDROID_INPUTMETHOD_LATIN_BINARYDICTIONARYUTILS_H +#define _COM_ANDROID_INPUTMETHOD_LATIN_BINARYDICTIONARYUTILS_H + +#include "jni.h" + +namespace latinime { +int register_BinaryDictionaryUtils(JNIEnv *env); +} // namespace latinime +#endif // _COM_ANDROID_INPUTMETHOD_LATIN_BINARYDICTIONARYUTILS_H |