diff options
author | 2012-08-12 19:07:44 -0700 | |
---|---|---|
committer | 2012-08-12 19:07:44 -0700 | |
commit | 7b4531a16f0d7f237822e94f3e962257ee9d0c16 (patch) | |
tree | 2237aa0f754e3ab44ccfac034f5ef6e17ffda724 /native/jni/src/gesture/incremental_decoder_interface.h | |
parent | f9b2841fb592778ad34b5181e1c0bcbf551e3632 (diff) | |
parent | bcec82de66f52655593dc233346f11468f5077a0 (diff) | |
download | latinime-7b4531a16f0d7f237822e94f3e962257ee9d0c16.tar.gz latinime-7b4531a16f0d7f237822e94f3e962257ee9d0c16.tar.xz latinime-7b4531a16f0d7f237822e94f3e962257ee9d0c16.zip |
am bcec82de: Clean up constructors
* commit 'bcec82de66f52655593dc233346f11468f5077a0':
Clean up constructors
Diffstat (limited to 'native/jni/src/gesture/incremental_decoder_interface.h')
-rw-r--r-- | native/jni/src/gesture/incremental_decoder_interface.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/native/jni/src/gesture/incremental_decoder_interface.h b/native/jni/src/gesture/incremental_decoder_interface.h index 3951514c0..e940344d4 100644 --- a/native/jni/src/gesture/incremental_decoder_interface.h +++ b/native/jni/src/gesture/incremental_decoder_interface.h @@ -34,9 +34,10 @@ class IncrementalDecoderInterface { int *outputIndices, int *outputTypes) = 0; virtual void setDict(const UnigramDictionary *dict, const BigramDictionary *bigram, const uint8_t *dictRoot, int rootPos) = 0; + IncrementalDecoderInterface() { }; virtual ~IncrementalDecoderInterface() { }; private: - //DISALLOW_COPY_AND_ASSIGN(IncrementalDecoderInterface); + DISALLOW_COPY_AND_ASSIGN(IncrementalDecoderInterface); }; } // namespace latinime #endif // LATINIME_INCREMENTAL_DECODER_INTERFACE_H |