X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBullet.h;h=0f16f15ce25b7b3ec1c12a9731dbc6e85d29a22f;hb=530749439472bddf13d9f4ee74ee6184ef76e3f9;hp=9e516e1cd4d392441cb9e2023ffaf978a29c5521;hpb=8283e978f8d621041c432b9b88a476bfd567385c;p=lyx.git diff --git a/src/Bullet.h b/src/Bullet.h index 9e516e1cd4..0f16f15ce2 100644 --- a/src/Bullet.h +++ b/src/Bullet.h @@ -1,25 +1,19 @@ // -*- C++ -*- -/* This is the bullet class definition file. - * This file is part of - * ====================================================== +/** + * \file Bullet.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 + * \author Allan Rae * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * This file Copyright 1997-1999 - * Allan Rae - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #ifndef BULLET_H #define BULLET_H -#ifdef __GNUG__ -#pragma interface -#endif - -#include "LString.h" +#include /// class Bullet { @@ -28,7 +22,7 @@ public: Bullet(int f = -1, int c = -1, int s = -1); /// - explicit Bullet(string const &); + explicit Bullet(std::string const &); /// void setCharacter(int); @@ -37,7 +31,7 @@ public: /// void setSize(int); /// - void setText(string const &); + void setText(std::string const &); /// int getCharacter() const; /// @@ -45,16 +39,14 @@ public: /// int getSize() const; /// - string const & getText() const; + std::string const & getText() const; /// Bullet & operator=(Bullet const &); /// friend bool operator==(Bullet const &, Bullet const &); protected: -#ifdef ENABLE_ASSERTIONS /// void testInvariant() const; -#endif private: /** This enum makes adding additional panels or changing panel sizes @@ -78,9 +70,9 @@ private: /// void generateText() const; /// - static string const bulletSize(int); + static std::string const bulletSize(int); /// - static string const bulletEntry(int, int); + static std::string const bulletEntry(int, int); /// int font; @@ -105,7 +97,7 @@ private: or one generated internally from the font, character and size settings. */ - mutable string text; + mutable std::string text; };