mirror of
https://github.com/brl/mutter.git
synced 2025-03-24 04:03:52 +00:00

This is only for types in the `Meta` namespace. * Clears up a lot of boilerplate * We get `g_autoptr` support for free
17 lines
491 B
C
17 lines
491 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef META_BACKGROUND_GROUP_H
|
|
#define META_BACKGROUND_GROUP_H
|
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#define META_TYPE_BACKGROUND_GROUP (meta_background_group_get_type ())
|
|
G_DECLARE_FINAL_TYPE (MetaBackgroundGroup,
|
|
meta_background_group,
|
|
META, BACKGROUND_GROUP,
|
|
ClutterActor)
|
|
|
|
ClutterActor *meta_background_group_new (void);
|
|
|
|
#endif /* META_BACKGROUND_GROUP_H */
|