1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| // MCpp_SignalInfoImpl.h - MULTICAM C++ API - SignalInfoImpl
| #if !defined(__MCPP_SIGNALINFOIMPL_H__)
| #define __MCPP_SIGNALINFOIMPL_H__
|
| #include "MCpp_SignalInfo.h"
|
| namespace Euresys
| {
| namespace MultiCam
| {
| inline SignalInfo::~SignalInfo()
| {
| WRAPPING_MEMBERS_UNINIT
| }
| }
| }
|
| #endif
|
|