]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclasslist.h
minimal effort implementation of:
[lyx.git] / src / lyxtextclasslist.h
index 978eb2afbe9640f5944fc361af20303eaa2d0244..76fbaa8e09baf75101cf5faa554029c371eb05d9 100644 (file)
@@ -24,7 +24,7 @@
 class LyXLayout;
 
 /// Reads the style files
-extern void LyXSetStyle();
+extern bool LyXSetStyle();
 
 ///
 class LyXTextClassList : boost::noncopyable {
@@ -40,13 +40,19 @@ public:
 
        /// Gets textclass number from name, -1 if textclass name does not exist
        std::pair<bool, lyx::textclass_type> const
-       NumberOfClass(std::string const & textclass) const;
+       numberOfClass(std::string const & textclass) const;
 
        ///
        LyXTextClass const & operator[](lyx::textclass_type textclass) const;
 
        /// Read textclass list.  Returns false if this fails.
-       bool Read();
+       bool read();
+       
+       /// add a textclass from user local directory. 
+       /// Return ture/false, and textclass number
+       std::pair<bool, lyx::textclass_type> const
+       addTextClass(std::string const & textclass, std::string const & path);
+
 private:
        ///
        mutable ClassList classlist_;