X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fauthor.h;h=9f2a0c7573a626bdbaa8319cd92c5dd2d147e047;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=2764923d1347bbf5febb9e8aed6b407db307d5d7;hpb=2f71b9d2352543f8c6a891cc7c6d84378eb0387d;p=lyx.git diff --git a/src/author.h b/src/author.h index 2764923d13..9f2a0c7573 100644 --- a/src/author.h +++ b/src/author.h @@ -1,3 +1,4 @@ +// -*- C++ -*- /** * \file author.h * This file is part of LyX, the document processor. @@ -5,7 +6,7 @@ * * \author John Levon * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #ifndef AUTHOR_H @@ -13,35 +14,40 @@ #include #include +#include + + +namespace lyx { -#include "LString.h" class Author { public: Author() {} - Author(string n, string e) - : name_(n), email_(e) {} + Author(std::string const & name, std::string const & email) + : name_(name), email_(email) {} - string const name() const { + std::string const name() const { return name_; } - string const email() const { + std::string const email() const { return email_; } friend std::istream & operator>>(std::istream & os, Author & a); private: - string name_; + std::string name_; - string email_; + std::string email_; }; class AuthorList { public: + AuthorList(); + int record(Author const & a); void record(int id, Author const & a); @@ -55,6 +61,8 @@ public: Authors::const_iterator end() const; private: + int last_id_; + Authors authors_; }; @@ -64,4 +72,7 @@ std::ostream & operator<<(std::ostream & os, Author const & a); std::istream & operator>>(std::istream & os, Author & a); + +} // namespace lyx + #endif // AUTHOR_H