aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/TCC/Tango.TCC.CardDetector/CardDetectionResult.h
blob: 68507e1f471d20bc40f708152bd497516a188cd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

using namespace System;
using namespace System::Drawing;

namespace Tango
{
	namespace TCC
	{
		namespace CardDetector {
			public ref class CardDetectionResult
			{
			public:
				CardDetectionResult();
				property bool IsDetected;
				property cli::array<Byte>^ DetectedBitmap;
			};
		}
	}
}