ASPiK SDK
genericalertbox.h
1 // This file is part of VSTGUI. It is subject to the license terms
2 // in the LICENSE file found in the top-level directory of this
3 // distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
4 
5 #pragma once
6 
7 #include "../include/ialertbox.h"
8 #include "../include/iuidescwindow.h"
9 
10 //------------------------------------------------------------------------
11 namespace VSTGUI {
12 namespace Standalone {
13 namespace Detail {
14 
15 using AlertBoxCallback = std::function<void (AlertResult)>;
16 WindowPtr createAlertBox (const AlertBoxConfig& config, const AlertBoxCallback& callback);
17 
18 //------------------------------------------------------------------------
19 } // Detail
20 } // Standalone
21 } // VSTGUI
Definition: customcontrols.cpp:8