]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
reformatting and remove using delc
[lyx.git] / src / insets / insetcite.h
index 7a766f577d4ec33b4d09fec0a15a4aac215fddee..3f896677f8e485f720c99863621ba3ac6a627b1f 100644 (file)
 #endif
 
 #include "insetcommand.h"
-#include "support/utility.hpp"
 
 /** Used to insert citations  
  */
-class InsetCitation : public InsetCommand, public noncopyable {
+class InsetCitation : public InsetCommand {
 public:
        ///
        InsetCitation(InsetCommandParams const &);
        ///
-       Inset * Clone() const { return new InsetCitation(params()); }
+       Inset * Clone(Buffer const &) const {
+               return new InsetCitation(params());
+       }
        ///
-       string getScreenLabel() const;
+       string const getScreenLabel() const;
        ///
        EDITABLE Editable() const { return IS_EDITABLE; }
+       ///
+       Inset::Code LyxCode() const { return Inset::CITE_CODE; }
         ///
        void Edit(BufferView *, int, int, unsigned int);
 };