]> git.lyx.org Git - lyx.git/blobdiff - src/Language.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / Language.h
index bee8e13bcd583f4d61ad806402e3857cf752e858..14700710b75b101548de3d01121a49cfab84098a 100644 (file)
@@ -48,7 +48,11 @@ public:
        ///
        std::string const & latex_options() const { return latex_options_; }
        ///
+       bool internalFontEncoding() const;
+       ///
        bool read(Lexer & lex);
+       // for the use in std::map
+       friend bool operator<(Language const & p, Language const & q);
 private:
        ///
        std::string lang_;
@@ -68,6 +72,13 @@ private:
        std::string latex_options_;
 };
 
+
+inline bool operator<(Language const & p, Language const & q)
+{
+       return q.lang() > p.lang();
+}
+
+
 class Languages
 {
 public: