]> git.lyx.org Git - lyx.git/blobdiff - src/TextClassList.h
* src/LyXRC.{cpp,h}:
[lyx.git] / src / TextClassList.h
index 740b87f5364dcbbcd265f949a01868786f9b0a0f..5560177ab4247ca64dfbd0a055147bb7573b0ccf 100644 (file)
@@ -16,7 +16,7 @@
 
 #include "support/types.h"
 
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
 
 #include <string>
 #include <vector>
@@ -40,6 +40,8 @@ public:
        const_iterator begin() const { return classlist_.begin(); }
        ///
        const_iterator end() const { return classlist_.end(); }
+       ///
+       bool empty() const { return classlist_.empty(); }
 
        /// Gets textclass number from name, -1 if textclass name does not exist
        std::pair<bool, textclass_type> const
@@ -66,6 +68,8 @@ private:
 
 ///
 extern TextClassList textclasslist;
+///
+textclass_type defaultTextclass();
 
 
 } // namespace lyx