blob: 206d1126a754b76c14384ee682ad7203ded0c832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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<MonCommand> mgr_commands = {
#define COMMAND(parsesig, helptext, module, perm) \
{parsesig, helptext, module, perm, 0},
#include "MgrCommands.h"
#undef COMMAND
};
|