#ifdef __cplusplus extern "C" { #endif #pragma once #include "HROOT-histType.h" #define TFITRESULTPTR_DECL_VIRT(Type) \ #define TFITRESULTPTR_DECL_NONVIRT(Type) \ TFitResult_p Type##_tFitResultPtr_Get ( Type##_p p ); #define TFITRESULTPTR_DECL_ACCESSOR(Type) \ #define TFITRESULTPTR_DEF_VIRT(Type) \ #define TFITRESULTPTR_DEF_NONVIRT(Type) \ TFitResult_p Type##_tFitResultPtr_Get ( Type##_p p ) {\ return from_nonconst_to_nonconst((TFitResult*)((TYPECASTMETHOD(Type, tFitResultPtr_Get, TFitResultPtr))(p))->Get());\ } #define TFITRESULTPTR_DEF_ACCESSOR(Type) \ TFITRESULTPTR_DECL_VIRT(TFitResultPtr) TFITRESULTPTR_DECL_NONVIRT(TFitResultPtr) TFITRESULTPTR_DECL_ACCESSOR(TFitResultPtr) #ifdef __cplusplus } #endif