1
2#ifndef __ACTION_HOLDER_H__
3#define __ACTION_HOLDER_H__
4
5#include <gtk/gtk.h>
6
7#define ACTION_TYPE_HOLDER (action_holder_get_type ())
8
9G_DECLARE_FINAL_TYPE (ActionHolder, action_holder, ACTION, HOLDER, GObject)
10
11ActionHolder * action_holder_new (GObject *owner,
12 const char *name);
13
14GObject *action_holder_get_owner (ActionHolder *holder);
15const char *action_holder_get_name (ActionHolder *holder);
16
17#endif /* __ACTION_HOLDER_H__ */
18

source code of gtk/gtk/inspector/action-holder.h