X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFloatList.h;h=b410ade851240e902eb042bea526ca5558059e77;hb=559c2f648239fff4fec769b34b30ccff23491e31;hp=aed0dfa79b7f92f7766a1e5136a494c5cc6614e0;hpb=797d87b4513088a66b17c7ac653b84e36ea80458;p=lyx.git diff --git a/src/FloatList.h b/src/FloatList.h index aed0dfa79b..b410ade851 100644 --- a/src/FloatList.h +++ b/src/FloatList.h @@ -1,47 +1,57 @@ // -*- 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-2000 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; /// FloatList(); /// + const_iterator begin() const; + /// + const_iterator end() const; + /// void newFloat(Floating const & fl); /// - string 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[](std::string const & t) const; private: /// List list; }; -/// -extern FloatList floatList; + +} // namespace lyx #endif