1/*
2 * Copyright 2012, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef CLI_STACK_FRAME_COMMAND_H
6#define CLI_STACK_FRAME_COMMAND_H
7
8
9#include "CliCommand.h"
10
11
12class CliStackFrameCommand : public CliCommand {
13public:
14								CliStackFrameCommand();
15	virtual	void				Execute(int argc, const char* const* argv,
16									CliContext& context);
17};
18
19
20#endif	// CLI_STACK_FRAME_COMMAND_H
21