Delphi-OpenCV/source/deprecated/opencv_classes/IString.h
Laentir Valetov 7edf1d9684 Refactoring directory structure
Signed-off-by: Laentir Valetov <laex@bk.ru>
2014-05-19 23:29:48 +04:00

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;