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
5namespace MR
6{
7
8class WinDropTarget;
9
10class DragDropWin32Handler : public IDragDropHandler
11{
12public:
13 DragDropWin32Handler( GLFWwindow* window );
14 ~DragDropWin32Handler();
15private:
16 HWND window_{ nullptr };
17 std::unique_ptr<WinDropTarget> winDropTartget_;
18};
19
20}
21#endif
Definition MRCameraOrientationPlugin.h:8