blob: 0c4edd3013818e0e908a5d763e74cda4d89a7c9d [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// 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_