diff options
author | 2011-03-12 14:51:57 +0000 | |
---|---|---|
committer | 2011-03-12 14:51:57 +0000 | |
commit | d99252d2600be0a16349e7fcc06e158484df628d (patch) | |
tree | bba80c65c9aa0abb75815c1a4816593cc3d74420 /src/clients/cave/command_factory.cc | |
parent | 212c4c26bc5114098d62d9947b5a0211d2b239e0 (diff) | |
download | paludis-d99252d2600be0a16349e7fcc06e158484df628d.tar.gz paludis-d99252d2600be0a16349e7fcc06e158484df628d.tar.xz |
cave print-dependent-ids
Diffstat (limited to 'src/clients/cave/command_factory.cc')
-rw-r--r-- | src/clients/cave/command_factory.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/clients/cave/command_factory.cc b/src/clients/cave/command_factory.cc index 7432757f5..707cc5f4c 100644 --- a/src/clients/cave/command_factory.cc +++ b/src/clients/cave/command_factory.cc @@ -59,6 +59,7 @@ #include "cmd_print_best_version.hh" #include "cmd_print_categories.hh" #include "cmd_print_commands.hh" +#include "cmd_print_dependent_ids.hh" #include "cmd_print_environment_metadata.hh" #include "cmd_print_id_actions.hh" #include "cmd_print_id_contents.hh" @@ -179,6 +180,7 @@ CommandFactory::CommandFactory() : _imp->handlers.insert(std::make_pair("print-best-version", std::bind(&make_command<PrintBestVersionCommand>))); _imp->handlers.insert(std::make_pair("print-categories", std::bind(&make_command<PrintCategoriesCommand>))); _imp->handlers.insert(std::make_pair("print-commands", std::bind(&make_command<PrintCommandsCommand>))); + _imp->handlers.insert(std::make_pair("print-dependent-ids", std::bind(&make_command<PrintDependentIDsCommand>))); _imp->handlers.insert(std::make_pair("print-environment-metadata", std::bind(&make_command<PrintEnvironmentMetadataCommand>))); _imp->handlers.insert(std::make_pair("print-id-actions", std::bind(&make_command<PrintIDActionsCommand>))); _imp->handlers.insert(std::make_pair("print-id-contents", std::bind(&make_command<PrintIDContentsCommand>))); |