diff options
author | 2009-10-14 19:28:18 +0100 | |
---|---|---|
committer | 2009-10-14 19:28:18 +0100 | |
commit | 6945cb45acb4f215f347cc0bbc7a55d10ea054b1 (patch) | |
tree | 689c5c44aa862ba52ced033e0fd6c812d58a171b /paludis/repositories/e/e_installed_repository.hh | |
parent | 4a87c6e9793486c94d9123110b12bd0c51bdd15e (diff) | |
download | paludis-6945cb45acb4f215f347cc0bbc7a55d10ea054b1.tar.gz paludis-6945cb45acb4f215f347cc0bbc7a55d10ea054b1.tar.xz |
Hooks don't need an interface.
Diffstat (limited to 'paludis/repositories/e/e_installed_repository.hh')
-rw-r--r-- | paludis/repositories/e/e_installed_repository.hh | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/paludis/repositories/e/e_installed_repository.hh b/paludis/repositories/e/e_installed_repository.hh index 4b9660c78..76427b09d 100644 --- a/paludis/repositories/e/e_installed_repository.hh +++ b/paludis/repositories/e/e_installed_repository.hh @@ -45,7 +45,6 @@ namespace paludis public Repository, public RepositoryEnvironmentVariableInterface, public RepositoryDestinationInterface, - public RepositoryHookInterface, private PrivateImplementationPattern<EInstalledRepository> { private: @@ -74,17 +73,15 @@ namespace paludis virtual bool want_pre_post_phases() const PALUDIS_ATTRIBUTE((warn_unused_result)); - /* RepositoryHookInterface */ - - virtual HookResult perform_hook(const Hook & hook) const - PALUDIS_ATTRIBUTE((warn_unused_result)); - /* Repository */ virtual std::tr1::shared_ptr<const CategoryNamePartSet> unimportant_category_names() const; virtual bool some_ids_might_support_action(const SupportsActionTestBase &) const; + virtual HookResult perform_hook(const Hook & hook) const + PALUDIS_ATTRIBUTE((warn_unused_result)); + ///\name For use by EInstalledRepositoryID ///\{ |