#pragma once
#include <maya/MPxCommand.h>
#define kmoduleLogicCmdName _T("moduleDetectionLogic")
public:
    ~moduleLogicCmd () override {}
    
    
    bool isUndoable ()
 const override { 
return (
false) ; }
 
    static void *creator() { return new moduleLogicCmd () ; }
} ;