X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloating.h;h=5d4c260ca55f63f4d1db19c088fd5e22c2dd35a1;hb=eead5ba43d0ddf06544ad1b40063981d3788c635;hp=cdbe80ed5c117f71ae388732e7a4a8db4e4afc11;hpb=42a1e2ea5a05435f9b07c6274b966e2ae13d4615;p=lyx.git diff --git a/src/Floating.h b/src/Floating.h index cdbe80ed5c..5d4c260ca5 100644 --- a/src/Floating.h +++ b/src/Floating.h @@ -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. * * ====================================================== */ @@ -12,10 +12,6 @@ #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,7 +28,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 +42,8 @@ public: /// string const & name() const; /// + string const & listName() const; + /// bool builtin() const; private: /// @@ -61,6 +59,8 @@ private: /// string name_; /// + string listName_; + /// bool builtin_; };