X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxtextclasslist.h;h=fdf6d98b2c104795719ad6cab7b93bec2eda3096;hb=ce7c45bb437c44dae15f96148cb9b793ab0b895c;hp=9bea70bde5b8e12760fc7ec5cef6bd4f7700a35a;hpb=2b82051a8191e7095631801dd18cc0178bfad756;p=lyx.git diff --git a/src/lyxtextclasslist.h b/src/lyxtextclasslist.h index 9bea70bde5..fdf6d98b2c 100644 --- a/src/lyxtextclasslist.h +++ b/src/lyxtextclasslist.h @@ -21,10 +21,13 @@ #include #include + +namespace lyx { + class LyXLayout; /// Reads the style files -extern void LyXSetStyle(); +extern bool LyXSetStyle(); /// class LyXTextClassList : boost::noncopyable { @@ -39,18 +42,18 @@ public: const_iterator end() const { return classlist_.end(); } /// Gets textclass number from name, -1 if textclass name does not exist - std::pair const + std::pair const numberOfClass(std::string const & textclass) const; /// - LyXTextClass const & operator[](lyx::textclass_type textclass) const; + LyXTextClass const & operator[](textclass_type textclass) const; /// Read textclass list. Returns false if this fails. bool read(); /// add a textclass from user local directory. /// Return ture/false, and textclass number - std::pair const + std::pair const addTextClass(std::string const & textclass, std::string const & path); private: @@ -61,4 +64,7 @@ private: /// extern LyXTextClassList textclasslist; + +} // namespace lyx + #endif