On my header file I have my MDA variable:
class node : public MPxNode {
public:
static MDoubleArray mDA;
};
Then on my .cpp file I see this line again:
MDoubleArray node::mDA;
- Is this line on the .cpp needed?
On my header file I have my MDA variable:
class node : public MPxNode {
public:
static MDoubleArray mDA;
};
Then on my .cpp file I see this line again:
MDoubleArray node::mDA;