mirror of
https://github.com/Laex/Delphi-OpenCV.git
synced 2024-11-15 15:55:53 +01:00
7edf1d9684
Signed-off-by: Laentir Valetov <laex@bk.ru>
14 lines
308 B
C
14 lines
308 B
C
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
#include "Unknwn.h"
|
|
#include "opencv2\core\core.hpp"
|
|
|
|
struct __declspec(uuid("{50C8309F-69B6-4E8C-A2B5-F2530007CCA1}")) IString : public IUnknown
|
|
{
|
|
public:
|
|
//---------------------------------
|
|
virtual cv::String* __stdcall getString() = 0;
|
|
};
|
|
|
|
typedef IString * LPString; |