]> git.lyx.org Git - lyx.git/blobdiff - src/language.h
fix "make dist" target
[lyx.git] / src / language.h
index 81242853821ca33ffe1fbb7ae9bd08862cab40e6..3bfe43b457f8a8f39ac7385f5c3d5eb36da576d8 100644 (file)
@@ -28,9 +28,10 @@ public:
        Language() : RightToLeft_(false) {}
        ///
        Language(string const & l, string const & b, string const & d,
-                bool rtl, Encoding const * e, string const & c)
+                bool rtl, Encoding const * e, string const & c,
+                string const & o)
                : lang_(l), babel_(b), display_(d), RightToLeft_(rtl),
-                 encoding_(e), code_(c)
+                 encoding_(e), code_(c), latex_options_(o)
                {}
        ///
        string const & lang() const {
@@ -56,6 +57,10 @@ public:
        string const & code() const {
                return code_;
        }
+       ///
+       string const & latex_options() const {
+               return latex_options_;
+       }
 private:
        ///
        string lang_;
@@ -69,6 +74,8 @@ private:
        Encoding const * encoding_;
        ///
        string code_;
+       ///
+       string latex_options_;
 };
 
 class Languages
@@ -79,12 +86,18 @@ public:
        ///
        typedef LanguageList::const_iterator const_iterator;
        ///
+       typedef LanguageList::size_type size_type;
+       ///
        void read(string const & filename);
        ///
        void setDefaults();
        ///
        Language const * getLanguage(string const & language) const;
        ///
+       size_type size() const {
+               return languagelist.size();
+       }
+       ///
        const_iterator begin() const {
                 return languagelist.begin();
         }
@@ -101,6 +114,7 @@ private:
 
 extern Languages languages;
 extern Language const * default_language;
-extern Language const *ignore_language;
+extern Language const * english_language;
+extern Language const * ignore_language;
 
 #endif