]> git.lyx.org Git - lyx.git/blobdiff - src/Floating.h
clean up a bit
[lyx.git] / src / Floating.h
index cdbe80ed5c117f71ae388732e7a4a8db4e4afc11..6f65b1162b77bf6a5ddf1a0f8563578e0e144307 100644 (file)
@@ -1,10 +1,10 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
  *
- *           Copyright 1998-2000 The LyX Team.
+ *           Copyright 1998-2001 The LyX Team.
  *
  * ======================================================
  */
@@ -32,7 +32,7 @@ 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;
        ///
@@ -46,6 +46,8 @@ public:
        ///
        string const & name() const;
        ///
+       string const & listName() const;
+       ///
        bool builtin() const;
 private:
        ///
@@ -61,6 +63,8 @@ private:
        ///
        string name_;
        ///
+       string listName_;
+       ///
        bool builtin_;
 };