mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
0c9da47505
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35921 a592a061-630c-0410-9148-cb99ea01b6c8
96 lines
1.8 KiB
C++
96 lines
1.8 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 "support/docstring.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class Author {
|
|
public:
|
|
///
|
|
Author() {}
|
|
///
|
|
Author(docstring const & name, docstring const & email)
|
|
: name_(name), email_(email), used_(true), buffer_id_(0) {}
|
|
///
|
|
docstring name() const { return name_; }
|
|
///
|
|
docstring email() const { return email_; }
|
|
///
|
|
unsigned int buffer_id() const { return buffer_id_; }
|
|
///
|
|
void setBufferId(unsigned int buffer_id) const { buffer_id_ = buffer_id; }
|
|
///
|
|
void setUsed(bool u) const { used_ = u; }
|
|
///
|
|
bool used() const { return used_; }
|
|
///
|
|
friend std::istream & operator>>(std::istream & os, Author & a);
|
|
|
|
private:
|
|
/// The author's name
|
|
docstring name_;
|
|
/// The author's email address
|
|
docstring email_;
|
|
///
|
|
mutable bool used_;
|
|
/// The id of the author in the lyx-file
|
|
mutable unsigned int buffer_id_;
|
|
};
|
|
|
|
|
|
class AuthorList {
|
|
public:
|
|
///
|
|
AuthorList();
|
|
///
|
|
int record(Author const & a);
|
|
///
|
|
void record(int id, Author const & a);
|
|
///
|
|
void recordCurrentAuthor(Author const & a);
|
|
///
|
|
Author const & get(int id) const;
|
|
///
|
|
typedef std::vector<Author> Authors;
|
|
///
|
|
void sort();
|
|
///
|
|
Authors::const_iterator begin() const;
|
|
///
|
|
Authors::const_iterator end() const;
|
|
///
|
|
friend
|
|
std::ostream & operator<<(std::ostream & os, AuthorList const & a);
|
|
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);
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // AUTHOR_H
|