summaryrefslogtreecommitdiff
path: root/tests/libpeas/introspection/introspection-activatable.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libpeas/introspection/introspection-activatable.h')
-rw-r--r--tests/libpeas/introspection/introspection-activatable.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/tests/libpeas/introspection/introspection-activatable.h b/tests/libpeas/introspection/introspection-activatable.h
new file mode 100644
index 0000000..c38456a
--- /dev/null
+++ b/tests/libpeas/introspection/introspection-activatable.h
@@ -0,0 +1,51 @@
+/*
+ * introspection-activatable.h
+ * This file is part of libintrospection
+ *
+ * Copyright (C) 2010 - Steve Frécinaux
+ *
+ * libintrospection is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * libintrospection is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * SPDX-License-Identifier: LGPL-2.1-or-later
+ */
+
+#pragma once
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define INTROSPECTION_TYPE_ACTIVATABLE (introspection_activatable_get_type ())
+#define INTROSPECTION_ACTIVATABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), INTROSPECTION_TYPE_ACTIVATABLE, IntrospectionActivatable))
+#define INTROSPECTION_ACTIVATABLE_IFACE(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), INTROSPECTION_TYPE_ACTIVATABLE, IntrospectionActivatableInterface))
+#define INTROSPECTION_IS_ACTIVATABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), INTROSPECTION_TYPE_ACTIVATABLE))
+#define INTROSPECTION_ACTIVATABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), INTROSPECTION_TYPE_ACTIVATABLE, IntrospectionActivatableInterface))
+
+typedef struct _IntrospectionActivatable IntrospectionActivatable; /* dummy typedef */
+typedef struct _IntrospectionActivatableInterface IntrospectionActivatableInterface;
+
+struct _IntrospectionActivatableInterface {
+ GTypeInterface g_iface;
+ void (*activate) (IntrospectionActivatable *activatable);
+ void (*deactivate) (IntrospectionActivatable *activatable);
+ void (*update_state) (IntrospectionActivatable *activatable);
+};
+
+GType introspection_activatable_get_type (void) G_GNUC_CONST;
+void introspection_activatable_activate (IntrospectionActivatable *activatable);
+void introspection_activatable_deactivate (IntrospectionActivatable *activatable);
+void introspection_activatable_update_state (IntrospectionActivatable *activatable);
+
+G_END_DECLS