vtkStandardNewMacro gives error C4430: missing type specifier

后端 未结 1 874
甜味超标
甜味超标 2021-01-23 03:19

I have the following code:

#include 

class InteractorStyle : public vtkInteractorStyleTrackballCamera
{
    public:
          


        
相关标签:
1条回答
  • 2021-01-23 03:57

    All you need to add is #include <vtkObjectFactory.h>. The tutorial never explicitly mentioned this, too bad.

    0 讨论(0)
提交回复
热议问题