diff options
author | 2011-01-09 10:23:12 +0000 | |
---|---|---|
committer | 2011-01-09 10:23:12 +0000 | |
commit | 7a2c9e974666881f44406c88189ae546a67ff0b7 (patch) | |
tree | f6846da02bf779a262f58e5042f3fa1bbf7415d3 /src/clients/inquisitio/key_extractor.hh | |
parent | 7f7c79fcc67df4fae498ca943e36592d3f7a3ad2 (diff) | |
download | paludis-7a2c9e974666881f44406c88189ae546a67ff0b7.tar.gz paludis-7a2c9e974666881f44406c88189ae546a67ff0b7.tar.xz |
Rework Pimp to avoid ImpPtr ickiness
Fixes: ticket:1070
Diffstat (limited to 'src/clients/inquisitio/key_extractor.hh')
-rw-r--r-- | src/clients/inquisitio/key_extractor.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/clients/inquisitio/key_extractor.hh b/src/clients/inquisitio/key_extractor.hh index d9aa9377c..1205a697a 100644 --- a/src/clients/inquisitio/key_extractor.hh +++ b/src/clients/inquisitio/key_extractor.hh @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2007, 2010 Ciaran McCreesh + * Copyright (c) 2007, 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 @@ -27,9 +27,11 @@ namespace inquisitio { class KeyExtractor : - private paludis::Pimp<KeyExtractor>, public Extractor { + private: + paludis::Pimp<KeyExtractor> _imp; + public: KeyExtractor(const std::string &, const bool flatten, const bool visible_only, const paludis::Environment &); |