blob: 3ae78dc82fc17a9c35e6fbc50882c41eab6ce18b (
plain) (
tree)
|
|
#include "precompiled/PCH.h"
#ifndef EXPORT_COMMAND_H
#define EXPORT_COMMAND_H
class ExportCommand : MPxCommand
{
public:
enum ExportArg
{
SELECTED,
ALL
};
static void* creator();
virtual MStatus doIt( const MArgList& args );
static const char* stringId;
private:
ExportCommand();
~ExportCommand();
static bool sRegisteredChunks;
};
#endif
|