diff options
Diffstat (limited to 'paludis/pretty_printer.hh')
-rw-r--r-- | paludis/pretty_printer.hh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/paludis/pretty_printer.hh b/paludis/pretty_printer.hh index 9369d1bad..043c4dd39 100644 --- a/paludis/pretty_printer.hh +++ b/paludis/pretty_printer.hh @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2010 Ciaran McCreesh + * Copyright (c) 2010, 2011 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -26,6 +26,7 @@ #include <paludis/dep_spec-fwd.hh> #include <paludis/package_id-fwd.hh> #include <paludis/name-fwd.hh> +#include <paludis/maintainer-fwd.hh> #include <string> #include <memory> @@ -68,6 +69,8 @@ namespace paludis virtual const std::string prettify(const FSPath &) const = 0; virtual const std::string prettify(const KeywordName &) const = 0; + + virtual const std::string prettify(const Maintainer &) const = 0; }; } |