]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathCommand.h
fix reading UTF8 encoded symbol file
[lyx.git] / src / mathed / InsetMathCommand.h
index 130d032a4fd748ec1f11bd68e330666f6c9cf6b9..a95ec06c68fd574a84834db7ece0462c905506bd 100644 (file)
 #include "insets/render_button.h"
 
 
+namespace lyx {
+
+
 /// Inset for things like \name[options]{contents}
 class CommandInset : public InsetMathNest {
 public:
        ///
-       explicit CommandInset(std::string const & name);
+       explicit CommandInset(docstring const & name);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -32,22 +35,25 @@ public:
        ///
        void write(WriteStream & os) const;
        //
-       // void infoize(std::ostream & os) const;
+       // void infoize(odocstream & os) const;
        ///
-       virtual lyx::docstring const screenLabel() const;
+       virtual docstring const screenLabel() const;
        /// generate something that will be understood by the Dialogs.
        std::string const createDialogStr(std::string const & name) const;
        ///
-       std::string const & commandname() const { return name_; }
+       docstring const & commandname() const { return name_; }
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
 
        ///
-       std::string name_;
+       docstring name_;
        ///
        mutable bool set_label_;
        ///
        mutable RenderButton button_;
 };
 
+
+} // namespace lyx
+
 #endif