object.h: don't include core.h

This commit is contained in:
George Kiagiadakis 2023-06-20 12:52:43 +03:00
parent 417b0dff4c
commit 9970450bfa
4 changed files with 5 additions and 1 deletions

View file

@ -9,11 +9,12 @@
#ifndef __WIREPLUMBER_OBJECT_H__
#define __WIREPLUMBER_OBJECT_H__
#include "core.h"
#include "transition.h"
G_BEGIN_DECLS
typedef struct _WpCore WpCore;
/*!
* \brief Flags that specify functionality that is available on this class.
*

View file

@ -7,6 +7,7 @@
*/
#include "plugin.h"
#include "core.h"
#include "log.h"
WP_DEFINE_LOCAL_LOG_TOPIC ("wp-plugin")

View file

@ -7,6 +7,7 @@
*/
#include "session-item.h"
#include "core.h"
#include "log.h"
#include "error.h"
#include <spa/utils/defs.h>

View file

@ -11,6 +11,7 @@
#include "object.h"
#include "proxy.h"
#include "properties.h"
G_BEGIN_DECLS