]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlayout.h
support for wasy symbols
[lyx.git] / src / lyxlayout.h
index ef8dcbadf479ee81c8468e727412249eacc7d62b..ff6d1446f55c96c0264aa3fbceee544f5601792a 100644 (file)
@@ -1,9 +1,9 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
@@ -28,10 +28,9 @@ class LyXTextClass;
 class LyXLayout {
 public:
        ///
-       LyXLayout ();
-
+       LyXLayout();
        ///
-       bool Read (LyXLex &, LyXTextClass const &);
+       bool Read(LyXLex &, LyXTextClass const &);
        ///
        void readAlign(LyXLex &);
        ///
@@ -47,11 +46,11 @@ public:
        ///
        void readSpacing(LyXLex &);
        ///
-       string const & name() const { return name_; }
+       string const & name() const;
        ///
-       void setName(string const & n) { name_ = n; }
+       void setName(string const & n);
        ///
-       string const & obsoleted_by() const { return obsoleted_by_; }
+       string const & obsoleted_by() const;
        ///
        string const & latexname() const { return latexname_; }
        ///
@@ -174,7 +173,7 @@ public:
                return latextype == LATEX_PARAGRAPH;
        }
        ///
-       bool isCommand() const { 
+       bool isCommand() const {
                return latextype == LATEX_COMMAND;
        }
        ///
@@ -193,7 +192,7 @@ private:
 
        /** Name of an layout that has replaced this layout.
            This is used to rename a layout, while keeping backward
-           compatibility 
+           compatibility
        */
        string obsoleted_by_;