21 lines
487 B
C++
21 lines
487 B
C++
//
|
|
// Created on 2026/4/19.
|
|
//
|
|
// Node APIs are not fully supported. To solve the compilation error of the interface cannot be found,
|
|
// please include "napi/native_api.h".
|
|
|
|
#ifndef OPENCAX_V3DVIEWCONTROLLER_H
|
|
#define OPENCAX_V3DVIEWCONTROLLER_H
|
|
#include "AIS_ViewController.hxx"
|
|
namespace NativeNXEA {
|
|
class V3dViewController {
|
|
public:
|
|
V3dViewController();
|
|
~V3dViewController();
|
|
private:
|
|
Handle(AIS_ViewController) viewController;
|
|
};
|
|
}
|
|
|
|
#endif //OPENCAX_V3DVIEWCONTROLLER_H
|