summaryrefslogtreecommitdiff
path: root/libmetacity/meta-theme-impl.c
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2016-01-28 12:13:36 +0200
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2016-01-28 12:13:36 +0200
commit6ebd4348c0ec6413fe8d566af1f2e251d41f5f51 (patch)
tree00054a91ca2d7725e4e7d35bf94ec972f7bba644 /libmetacity/meta-theme-impl.c
parentd18d2f2528b4aa8a280dd8dc0ac2a4ffe5c9037c (diff)
downloadmetacity-6ebd4348c0ec6413fe8d566af1f2e251d41f5f51.tar.gz
libmetacity: add MetaThemeImpl, MetaThemeGtk and MetaThemeMetacity
Diffstat (limited to 'libmetacity/meta-theme-impl.c')
-rw-r--r--libmetacity/meta-theme-impl.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/libmetacity/meta-theme-impl.c b/libmetacity/meta-theme-impl.c
new file mode 100644
index 00000000..67de1935
--- /dev/null
+++ b/libmetacity/meta-theme-impl.c
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2016 Alberts Muktupāvels
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "config.h"
+
+#include "meta-theme-impl.h"
+
+G_DEFINE_TYPE (MetaThemeImpl, meta_theme_impl, G_TYPE_OBJECT)
+
+static void
+meta_theme_impl_class_init (MetaThemeImplClass *impl_class)
+{
+}
+
+static void
+meta_theme_impl_init (MetaThemeImpl *impl)
+{
+}