#ifndef shavePadCmd_h #define shavePadCmd_h // Shave and a Haircut // (c) 2019 Epic Games // US Patent 6720962 #include #include #include #include class shavePadCmd : public MPxCommand { public: shavePadCmd(); virtual ~shavePadCmd(); MStatus doIt( const MArgList& args ); bool isUndoable() const; static void* createCmd(); static MSyntax createSyntax() { MSyntax syntax; return syntax; } static const MString commandName; private: }; inline bool shavePadCmd::isUndoable() const { return false; } #endif