ASPiK SDK
touchbarsupport.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 "vstgui/lib/platform/iplatformframe.h"
8 #include "vstgui/standalone/include/fwd.h"
9 
10 namespace Mandelbrot {
11 
12 #if MAC && defined (MAC_OS_X_VERSION_10_12)
13 void installTouchbarSupport (VSTGUI::IPlatformFrameTouchBarExtension*, const VSTGUI::Standalone::ValuePtr&);
14 #else
15 inline void installTouchbarSupport (VSTGUI::IPlatformFrameTouchBarExtension*, const VSTGUI::Standalone::ValuePtr&) {}
16 #endif // MAC
17 
18 } // Mandelbrot
19 
Definition: mandelbrot.h:12