mrDarker
2025-08-11 bd9942d185fb25b35b0c6e089e5763d45e5c83ce
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