mirror of
https://github.com/brl/mutter.git
synced 2025-03-24 20:23:56 +00:00
22 lines
406 B
C
22 lines
406 B
C
![]() |
#ifdef HAVE_CONFIG_H
|
||
|
#include "config.h"
|
||
|
#endif
|
||
|
|
||
|
#include "clutter-constraint.h"
|
||
|
|
||
|
#include "clutter-actor-meta-private.h"
|
||
|
|
||
|
G_DEFINE_ABSTRACT_TYPE (ClutterConstraint,
|
||
|
clutter_constraint,
|
||
|
CLUTTER_TYPE_ACTOR_META);
|
||
|
|
||
|
static void
|
||
|
clutter_constraint_class_init (ClutterConstraintClass *klass)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
clutter_constraint_init (ClutterConstraint *self)
|
||
|
{
|
||
|
}
|