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