]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNomencl.h
Andre's s/getTextClass/textClass/ cleanup.
[lyx.git] / src / insets / InsetNomencl.h
index 8e75693130f8db4f9099f4c499a3eb324ef012dd..5d6c663d3c26e352a7e1ef0d55f16c0f79cb5967 100644 (file)
@@ -40,6 +40,13 @@ public:
                    OutputParams const &) const;
        ///
        int docbookGlossary(odocstream &) const;
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "nomenclature"; };
+       ///
+       static bool isCompatibleCommand(std::string const & s) 
+               { return s == "nomenclature"; }
 private:
        virtual Inset * clone() const {
                return new InsetNomencl(params());
@@ -70,6 +77,13 @@ public:
        DisplayType display() const { return AlignCenter; }
        ///
        docstring const getScreenLabel(Buffer const &) const;
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "printnomenclature"; };
+       ///
+       static bool isCompatibleCommand(std::string const & s) 
+               { return s == "printnomenclature"; }
 private:
        virtual Inset * clone() const {
                return new InsetPrintNomencl(params());