testNobjectNode/testNobjectNode.h
#ifndef _TESTNOBJECTNODE_
#define _TESTNOBJECTNODE_
#include <maya/MPxNode.h>
#include <maya/MnCloth.h>
class testNobjectNode :
public MPxNode
{
public:
testNobjectNode();
static void *creator()
{
return new testNobjectNode;
}
};
#endif