d539fe28d5
This is only for types in the `Meta` namespace. * Clears up a lot of boilerplate * We get `g_autoptr` support for free
15 lines
409 B
C
15 lines
409 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef META_WINDOW_GROUP_H
|
|
#define META_WINDOW_GROUP_H
|
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#define META_TYPE_WINDOW_GROUP (meta_window_group_get_type())
|
|
G_DECLARE_FINAL_TYPE (MetaWindowGroup,
|
|
meta_window_group,
|
|
META, WINDOW_GROUP,
|
|
ClutterActor)
|
|
|
|
#endif /* META_WINDOW_GROUP_H */
|