]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetRef.h
pimpl not needed here
[lyx.git] / src / insets / InsetRef.h
index cf974d5a66bb009ebc52d1df6289bd2e9f7f9007..23789a97baebe6095186d45ba34577cba5303ca0 100644 (file)
@@ -57,15 +57,21 @@ public:
                OutputParams const &) const;
        ///
        void validate(LaTeXFeatures & features) const;
+       ///
+       static CommandInfo const * findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "ref"; };
+       ///
+       static bool isCompatibleCommand(std::string const & s);
 protected:
+       ///
        InsetRef(InsetRef const &);
 
        ///
        virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
 private:
-       virtual Inset * clone() const {
-               return new InsetRef(*this);
-       }
+       ///
+       Inset * clone() const { return new InsetRef(*this); }
        ///
        bool isLatex;
 };