]> git.lyx.org Git - lyx.git/blobdiff - src/author.h
zlib stuff
[lyx.git] / src / author.h
index 2764923d1347bbf5febb9e8aed6b407db307d5d7..aea4c0629823947b1a3ee4e7274595b4b180a915 100644 (file)
@@ -20,8 +20,8 @@ class Author {
 public:
        Author() {}
 
-       Author(string n, string e)
-               : name_(n), email_(e) {}
+       Author(string const & name, string const & email)
+               : name_(name), email_(email) {}
 
        string const name() const {
                return name_;
@@ -42,6 +42,8 @@ private:
 
 class AuthorList {
 public:
+       AuthorList();
+
        int record(Author const & a);
 
        void record(int id, Author const & a);
@@ -55,6 +57,8 @@ public:
        Authors::const_iterator end() const;
 
 private:
+       int last_id_;
+
        Authors authors_;
 };