/*
* Copyright 2004 Perforce Software. All rights reserved.
*
* Developed by Data Shades Ltd.
*/
#include <maya/MString.h>
#include <maya/MArgList.h>
#include <maya/MPxCommand.h>
/*
* Class to handle "Results of Last Command" menu command
*/
class LastResultsCommand : public MPxCommand
{
public:
/*
* Carry out action
*/
MStatus doIt( const MArgList& args );
/*
* Return an instance of this class
*/
static void* creator();
};