mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-18 00:03:05 -04:00
This allows gui widgets to utilise native platform interfaces. Additionally attaching the instance to QgsGui allows QgsNative to become a QObject in future if required and for use of signals/slots in the native interfaces.
23 lines
1.1 KiB
C++
23 lines
1.1 KiB
C++
/***************************************************************************
|
|
qgsnative.cpp - abstracted interface to native system calls
|
|
-------------------
|
|
begin : January 2017
|
|
copyright : (C) 2017 by Matthias Kuhn
|
|
email : matthias@opengis.ch
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "qgsnative.h"
|
|
|
|
void QgsNative::currentAppActivateIgnoringOtherApps()
|
|
{
|
|
}
|