X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FThesaurus.h;h=65cd0de6553c4e846a1169cbfa074f6ab5017dfb;hb=14001c49fe0fb3d95a0f69f63344e7ae59d28180;hp=9808a455ff49ab683e31734f39644553d9178ad0;hpb=af05d3ffa3288d7a012aa16fd59168396c39f3ab;p=lyx.git diff --git a/src/Thesaurus.h b/src/Thesaurus.h index 9808a455ff..65cd0de655 100644 --- a/src/Thesaurus.h +++ b/src/Thesaurus.h @@ -15,17 +15,9 @@ #include "support/docstring.h" -#include #include #include - -#ifdef HAVE_LIBMYTHES -#include MYTHES_H_LOCATION -#else -#ifdef HAVE_LIBAIKSAURUS -#include AIKSAURUS_H_LOCATION -#endif // HAVE_LIBAIKSAURUS -#endif // !HAVE_LIBMYTHES +#include namespace lyx { @@ -51,18 +43,8 @@ public: bool thesaurusAvailable(docstring const & lang) const; private: -#ifdef HAVE_LIBMYTHES - /// add a thesaurus to the list - bool addThesaurus(docstring const & lang); - - typedef std::map Thesauri; - /// the thesauri - Thesauri thes_; -#else -#ifdef HAVE_LIBAIKSAURUS - Aiksaurus * thes_; -#endif // HAVE_LIBAIKSAURUS -#endif // !HAVE_LIBMYTHES + struct Private; + Private * const d; }; extern Thesaurus thesaurus;