]> git.lyx.org Git - lyx.git/blobdiff - src/author.h
Point fix, earlier forgotten
[lyx.git] / src / author.h
index d362d7f9d5eafbed39a1adb76dc14ae1924ffa14..b06b9611e9b66f1bdc5b69853d93d9ad14647eac 100644 (file)
@@ -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
 #include <iosfwd>
 
 #include "LString.h"
+
 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_;
@@ -30,7 +31,7 @@ public:
        string const email() const {
                return email_;
        }
+
        friend  std::istream & operator>>(std::istream & os, Author & a);
 
 private:
@@ -38,30 +39,34 @@ private:
 
        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); 
+
+std::ostream & operator<<(std::ostream & os, Author const & a);
+
+std::istream & operator>>(std::istream & os, Author & a);
+
 #endif // AUTHOR_H