#ifndef shaveIconCmd_h #define shaveIconCmd_h // Shave and a Haircut // (c) 2019 Epic Games // US Patent 6720962 #include #include #include #include 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