CVB++ 15.0
c_dc_emu.h
1#pragma once
2
3#if defined __GNUC__ && !defined CVB_SHOW_WARNINGS
4# pragma GCC system_header
5#endif // __GNUC__
6
7#include "../namespace.hpp"
8
9namespace Cvb
10{
11
12CVB_BEGIN_INLINE_NS
13
14namespace CExports
15{
16
17namespace Emu
18{
19
20const int DelayGroup = 0;
21const int CurrentImageIndexGroup = 1;
22const int ImageCountGroup = 2;
23
24}
25
26
27enum DC_PARAM_EMU
28{
29 DC_FILENAME_CURRENT = 0x00000100,
30 DC_FILENAME_NEXT = 0x00000101,
31 DC_FILENAME_PREVIOUS = 0x00000102,
32};
33
34
35}
36
37CVB_END_INLINE_NS
38
39}
Root namespace for the Image Manager interface.
Definition c_bayer_to_rgb.h:17