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