aboutsummaryrefslogtreecommitdiffstats
path: root/src/app_launcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app_launcher.h')
-rw-r--r--src/app_launcher.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/app_launcher.h b/src/app_launcher.h
deleted file mode 100644
index 3155609..0000000
--- a/src/app_launcher.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// SPDX-License-Identifier: Apache-2.0
-/*
- * Copyright (C) 2021 Collabora Ltd
- * Copyright (C) 2022 Konsulko Group
- */
-
-#ifndef APPLAUNCHER_H
-#define APPLAUNCHER_H
-
-#include <glib-object.h>
-#include <systemd/sd-bus.h>
-#include <systemd/sd-event.h>
-
-#include "applaunch-dbus.h"
-#include "app_info.h"
-
-G_BEGIN_DECLS
-
-#define APPLAUNCHD_TYPE_APP_LAUNCHER app_launcher_get_type()
-
-G_DECLARE_FINAL_TYPE(AppLauncher, app_launcher, APPLAUNCHD, APP_LAUNCHER,
- applaunchdAppLaunchSkeleton);
-
-AppLauncher *app_launcher_get_default(void);
-
-gboolean app_launcher_start_app(AppLauncher *self, AppInfo *app_info);
-
-G_END_DECLS
-
-#endif