MeshLib C++ Docs
Loading...
Searching...
No Matches
MRDragDropWin32Handler.h
Go to the documentation of this file.
1#pragma once
2#ifdef _WIN32
3#include "MRDragDropHandler.h"
4#include <windef.h>
5
6namespace MR
7{
8
9class WinDropTarget;
10
11class DragDropWin32Handler : public IDragDropHandler
12{
13public:
14 DragDropWin32Handler( GLFWwindow* window );
15 ~DragDropWin32Handler();
16private:
17 HWND window_{ nullptr };
18 std::unique_ptr<WinDropTarget> winDropTartget_;
19};
20
21}
22#endif
Definition MRCameraOrientationPlugin.h:8