]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclasslist.h
minimal effort implementation of:
[lyx.git] / src / lyxtextclasslist.h
index 8fa66f2ae11ed3dfb45691e875f76311a4b9fa83..76fbaa8e09baf75101cf5faa554029c371eb05d9 100644 (file)
 #ifndef LYXTEXTCLASSLIST_H
 #define LYXTEXTCLASSLIST_H
 
+#include "lyxtextclass.h"
+
 #include "support/types.h"
 
 #include <boost/utility.hpp>
 
-#include "support/std_string.h"
-
+#include <string>
 #include <vector>
 
-class LyXTextClass;
 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(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_;