AusweisApp
 
Lade ...
Suche ...
Keine Treffer
Initializer.h
gehe zur Dokumentation dieser Datei
1
4
5#pragma once
6
7#include <QCoreApplication>
8
9
10#define INIT_FUNCTION(pRegister)\
11 namespace {\
12 static void init_function(){\
13 qAddPreRoutine(pRegister);\
14 }\
15 Q_CONSTRUCTOR_FUNCTION(init_function)\
16 }