]> git.lyx.org Git - lyx.git/blobdiff - src/Author.cpp
Move editing, shortcuts, keyboard/mouse and completion to a separate category in...
[lyx.git] / src / Author.cpp
index d31dd7cb5f2017f51ac4480c949b6736c1a20432..4f2f13f7f93251a9bb6a224566f241aa1d6abd0d 100644 (file)
 #include <istream>
 
 using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 
-using support::token;
-using support::trim;
-
 
 bool operator==(Author const & l, Author const & r)
 {
@@ -32,14 +30,14 @@ bool operator==(Author const & l, Author const & r)
 }
 
 
-std::ostream & operator<<(std::ostream & os, Author const & a)
+ostream & operator<<(ostream & os, Author const & a)
 {
        // FIXME UNICODE
        os << "\"" << to_utf8(a.name()) << "\" " << to_utf8(a.email());
        return os;
 }
 
-std::istream & operator>>(std::istream & is, Author & a)
+istream & operator>>(istream & is, Author & a)
 {
        string s;
        getline(is, s);