]> git.lyx.org Git - lyx.git/blobdiff - src/dimension.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / dimension.h
index 2b732584ff9988dcb627213ba8827b8c838e20db..caee49d253a5f319bfcc2db94495ee618a6d2fb8 100644 (file)
@@ -1,14 +1,12 @@
 // -*- C++ -*-
-
 /**
- *  \file dimension.h
- *
- *  This file is part of LyX, the document processor.
- *  Licence details can be found in the file COPYING.
+ * \file dimension.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *  \author André Pönitz
+ * \author André Pönitz
  *
- *  Full author contact details are available in file CREDITS.
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef DIMENSION_H
@@ -40,10 +38,15 @@ public:
        /// get width
        int width() const { return wid; }
 
+       /// add space for a frame
+       //void addFrame(int frame) const;
+       /// add space for bottom part of a frame
+       //void addFrameBottom(int frame) const;
+
 public:
        /// these are intentionally public as things like
        ///
-       ///   dim.asc += 20; 
+       ///   dim.asc += 20;
        ///
        /// are used all over the place and "hiding" those behind
        ///