blob: 84febbea72986af8940c7341660f3ff05e4b476a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: BSD-3-Clause
#include <gypsy/gypsy-satellite.h>
#include <gypsy/gypsy-control.h>
#include <gypsy/gypsy-device.h>
#include <gconf/gconf-client.h>
int main()
{
GypsyControl *control = gypsy_control_get_default();
GypsyDevice *device = gypsy_device_new("test");
GypsySatellite *satellite = gypsy_satellite_new("test");
GConfClient *client = gconf_client_get_default();
g_object_unref(client);
return 0;
}
|