CVB++ 15.0
vin_image.hpp
1#pragma once
2
3#include "../global.hpp"
4
5#include "_decl/decl_device_image.hpp"
6
7namespace Cvb
8{
9
10 CVB_BEGIN_INLINE_NS
11
12 namespace Driver
13 {
14
15 class VinImage : public DeviceImage
16 {
17 public:
18 explicit VinImage(const DevicePtr &device)
19 : DeviceImage(device)
20 {
21 }
22 };
23
24 } // namespace Driver
25
26 using Driver::VinImage;
27
28 CVB_END_INLINE_NS
29
30} // namespace Cvb
Namespace for driver or device related operations.
Definition decl_composite.hpp:28
Root namespace for the Image Manager interface.
Definition c_bayer_to_rgb.h:17
std::shared_ptr< Device > DevicePtr
Convenience shared pointer for Device.
Definition global.hpp:98