19 lines
366 B
C++
19 lines
366 B
C++
//
|
|
// Created on 2026/3/6.
|
|
//
|
|
// 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_VIEWER_H
|
|
#define OPENCAX_VIEWER_H
|
|
|
|
#include "../RenderStruct.h"
|
|
|
|
namespace NativeOpenCAX{
|
|
|
|
bool InitViewer(RenderOption& opt);
|
|
void ChangeViewer();
|
|
}
|
|
|
|
#endif //OPENCAX_VIEWER_H
|