blob: 86ad323541bf8b0c789f5e5a12df2b34e62cc10a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SPELLCHECK_BROWSER_SPELLCHECK_DICTIONARY_H_
#define COMPONENTS_SPELLCHECK_BROWSER_SPELLCHECK_DICTIONARY_H_
// Defines a dictionary for use in the spellchecker system and provides access
// to words within the dictionary.
class SpellcheckDictionary {
public:
SpellcheckDictionary() {}
SpellcheckDictionary(const SpellcheckDictionary&) = delete;
SpellcheckDictionary& operator=(const SpellcheckDictionary&) = delete;
virtual ~SpellcheckDictionary() {}
virtual void Load() = 0;
protected:
};
#endif // COMPONENTS_SPELLCHECK_BROWSER_SPELLCHECK_DICTIONARY_H_
|