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