1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Create native Mac bridge files

This commit is contained in:
Dominik Louven 2018-11-27 11:30:43 +01:00
parent cb10848ca6
commit 2b3c69c1c6
4 changed files with 21 additions and 0 deletions

View File

View File

@ -0,0 +1,4 @@
#ifndef MACBRIDGE_H
#define MACBRIDGE_H
#endif // MACBRIDGE_H

View File

@ -0,0 +1,6 @@
#include "macintegration.h"
MacIntegration::MacIntegration()
{
}

View File

@ -0,0 +1,11 @@
#ifndef MACINTEGRATION_H
#define MACINTEGRATION_H
class MacIntegration
{
public:
MacIntegration();
};
#endif // MACINTEGRATION_H