mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
73 lines
1.2 KiB
C++
73 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file author.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef AUTHOR_H
|
|
#define AUTHOR_H
|
|
|
|
#include <map>
|
|
#include <iosfwd>
|
|
#include <string>
|
|
|
|
|
|
class Author {
|
|
public:
|
|
Author() {}
|
|
|
|
Author(std::string const & name, std::string const & email)
|
|
: name_(name), email_(email) {}
|
|
|
|
std::string const name() const {
|
|
return name_;
|
|
}
|
|
|
|
std::string const email() const {
|
|
return email_;
|
|
}
|
|
|
|
friend std::istream & operator>>(std::istream & os, Author & a);
|
|
|
|
private:
|
|
std::string name_;
|
|
|
|
std::string email_;
|
|
};
|
|
|
|
|
|
class AuthorList {
|
|
public:
|
|
AuthorList();
|
|
|
|
int record(Author const & a);
|
|
|
|
void record(int id, Author const & a);
|
|
|
|
Author const & get(int id);
|
|
|
|
typedef std::map<int, Author> Authors;
|
|
|
|
Authors::const_iterator begin() const;
|
|
|
|
Authors::const_iterator end() const;
|
|
|
|
private:
|
|
int last_id_;
|
|
|
|
Authors authors_;
|
|
};
|
|
|
|
bool operator==(Author const & l, Author const & r);
|
|
|
|
std::ostream & operator<<(std::ostream & os, Author const & a);
|
|
|
|
std::istream & operator>>(std::istream & os, Author & a);
|
|
|
|
#endif // AUTHOR_H
|