blob: 2586c1b02c1760b1106f5e1a7d0584c089681035 (
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
|
#ifndef shaveInfo_h
#define shaveInfo_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 shaveInfo : public MPxCommand
{
public:
shaveInfo();
virtual ~shaveInfo();
MStatus doIt( const MArgList& args );
bool isUndoable() const;
static void* createCmd();
static MSyntax createSyntax();
static const MString commandName;
};
inline bool shaveInfo::isUndoable() const
{ return false; }
#endif
|