aboutsummaryrefslogtreecommitdiff
path: root/mayaPlug/shaveIconCmd.h
blob: e2fea4a015aaf8d323a4c16dfa64c81c4de835a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef shaveIconCmd_h
#define shaveIconCmd_h

// Shave and a Haircut
// (c) 2019 Epic Games
// US Patent 6720962

#include <maya/MArgList.h>
#include <maya/MPxCommand.h>
#include <maya/MSyntax.h>
#include <maya/MString.h>

class shaveIconCmd : public MPxCommand
{
public:
					shaveIconCmd();
	virtual			~shaveIconCmd();

	MStatus			doIt( const MArgList& args );
	bool			isUndoable() const;

	static void*	createCmd();
	static MSyntax	createSyntax();

	static const MString	commandName;

private:
};


inline bool shaveIconCmd::isUndoable() const
{	return false;	}

#endif