X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloatList.h;h=c8a9df46e2fa4d756a2fe79bee633de3d8e98788;hb=78046794ccfce3a20751e00b35295c290853afd6;hp=5d05702ba79b9ce5435a5915045b758fc71206c2;hpb=12b01bf0a285d3e564654d5ea9d85908821c5704;p=lyx.git diff --git a/src/FloatList.h b/src/FloatList.h index 5d05702ba7..c8a9df46e2 100644 --- a/src/FloatList.h +++ b/src/FloatList.h @@ -1,31 +1,28 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file FloatList.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1998-2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS. */ #ifndef FLOATLIST_H #define FLOATLIST_H -#ifdef __GNUG__ -#pragma interface -#endif - #include +#include + -#include "LString.h" -#include "Floating.h" +class Floating; /// class FloatList { public: /// - typedef std::map List; + typedef std::map List; /// typedef List::const_iterator const_iterator; /// @@ -37,15 +34,15 @@ public: /// void newFloat(Floating const & fl); /// - string const defaultPlacement(string const & t) const; + std::string const defaultPlacement(std::string const & t) const; /// - bool typeExist(string const & t) const; + bool typeExist(std::string const & t) const; /// - Floating const & getType(string const & t) const; + Floating const & getType(std::string const & t) const; /// - void erase(string const & t); + void erase(std::string const & t); /// - const_iterator operator[](string const & t) const; + const_iterator operator[](std::string const & t) const; private: /// List list;