aboutsummaryrefslogtreecommitdiff
path: root/mayaPlug/shaveBrushCtxCmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'mayaPlug/shaveBrushCtxCmd.h')
-rw-r--r--mayaPlug/shaveBrushCtxCmd.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/mayaPlug/shaveBrushCtxCmd.h b/mayaPlug/shaveBrushCtxCmd.h
new file mode 100644
index 0000000..424d5c0
--- /dev/null
+++ b/mayaPlug/shaveBrushCtxCmd.h
@@ -0,0 +1,26 @@
+#ifndef shaveBrushCtxCmd_h
+#define shaveBrushCtxCmd_h
+// Shave and a Haircut
+// (c) 2019 Epic Games
+// US Patent 6720962
+
+#include <maya/MPxContextCommand.h>
+
+#include "shaveCursorCtxCmd.h"
+
+class shaveBrushCtxCmd : public shaveCursorCtxCmd
+{
+public:
+ shaveBrushCtxCmd();
+ virtual ~shaveBrushCtxCmd();
+
+ MStatus appendSyntax();
+ static void* createCmd() { return new shaveBrushCtxCmd; }
+ virtual shaveCursorCtx* createContext();
+ virtual MStatus doEditFlags();
+ virtual MStatus doQueryFlags();
+
+ static const MString commandName;
+};
+
+#endif