X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fmgr%2Fmgr_commands.cc;fp=src%2Fceph%2Fsrc%2Fmgr%2Fmgr_commands.cc;h=aafee99140cf81d33e5b60de19338ea0278e3945;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/mgr/mgr_commands.cc b/src/ceph/src/mgr/mgr_commands.cc new file mode 100644 index 0000000..aafee99 --- /dev/null +++ b/src/ceph/src/mgr/mgr_commands.cc @@ -0,0 +1,14 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#include "mgr_commands.h" + +/* The set of statically defined (C++-handled) commands. This + * does not include the Python-defined commands, which are loaded + * in PyModules */ +const std::vector mgr_commands = { +#define COMMAND(parsesig, helptext, module, perm, availability) \ + {parsesig, helptext, module, perm, availability, 0}, +#include "MgrCommands.h" +#undef COMMAND +};