mrDarker
2025-08-09 7201dd0993a94087a1c03e4f9700e3a6128d17e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// MCpp_Surface.h - MULTICAM C++ API - Surface
#if !defined(__MCPP_SURFACE_H__)
#define __MCPP_SURFACE_H__
 
namespace Euresys
{
  namespace MultiCam
  {
    // ********************************************************************************************
    // Surface class
    // -------------
 
    class Surface : public MultiCamObject
    {
      WRAPPING_MEMBERS
 
    protected:
      bool UserSurface;
    public:
      Surface(MCHANDLE aHandle);
 
    public:
      Surface();
      inline ~Surface();
      operator MCHANDLE() { return Handle; }
 
      void Reserve();
      void Free();
    };
  }
}
 
#endif