Why do I get the error “error: unknown type name 'virtual'” when trying to compile this code?

后端 未结 7 2476
庸人自扰
庸人自扰 2021-02-14 01:41

Code:

struct IRenderingEngine {
    virtual void Initialize(int width, int height) = 0;
    virtual void Render() const = 0;
    virtual void UpdateAnimation(flo         


        
7条回答
  •  无人共我
    2021-02-14 02:06

    if you call C++ files ( even if you only import them ) you need to change the .m file that call's it to .mm

提交回复
热议问题