]> git.lyx.org Git - lyx.git/blobdiff - src/Floating.h
Point fix, earlier forgotten
[lyx.git] / src / Floating.h
index 6390adf48f4e9d89a2105c904c0cd0d9cd368731..372bda9774f14000fcb92dafc9118dd5051507ba 100644 (file)
@@ -1,21 +1,17 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file Floating.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 1998-2000 The LyX Team.
+ * \author Lars Gullik Bjønnes
  *
- * ======================================================
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FLOATING_H
 #define FLOATING_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "LString.h"
 
 /** This is a "float layout" object. It contains the parameters for how to
@@ -32,14 +28,22 @@ public:
        Floating(string const & type, string const & placement,
                 string const & ext, string const & within,
                 string const & style, string const & name,
-                bool builtin = false);
+                string const & listName, bool builtin = false);
        ///
        string const & type() const;
        ///
        string const & placement() const;
        ///
+       string const & ext() const;
+       ///
+       string const & within() const;
+       ///
+       string const & style() const;
+       ///
        string const & name() const;
        ///
+       string const & listName() const;
+       ///
        bool builtin() const;
 private:
        ///
@@ -55,6 +59,8 @@ private:
        ///
        string name_;
        ///
+       string listName_;
+       ///
        bool builtin_;
 };