SUAPI-CppWrapper
C++WrapperforSketchUpCAPI
SketchUpAPITests.hpp
1 #pragma once
2 
3 #define SU(api_function_call) {\
4  auto su_api_result = api_function_call;\
5  assert(SU_ERROR_NONE == su_api_result);\
6 }\
7