Old code assumes that a NodeParam's parent will always be a Node. The function has been separated off and tweaked in the event that this is not the case.
12 lines
114 B
C++
12 lines
114 B
C++
#ifndef INPUTARRAY_H
|
|
#define INPUTARRAY_H
|
|
|
|
|
|
class InputArray
|
|
{
|
|
public:
|
|
InputArray();
|
|
};
|
|
|
|
#endif // INPUTARRAY_H
|