2019-04-03 18:31:05 +03:00
|
|
|
/* WirePlumber
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2019 Collabora Ltd.
|
|
|
|
|
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
|
|
|
|
|
*
|
2019-05-31 12:13:01 +03:00
|
|
|
* SPDX-License-Identifier: MIT
|
2019-04-12 12:53:54 +03:00
|
|
|
*/
|
2019-04-03 18:31:05 +03:00
|
|
|
|
2019-12-09 12:34:06 +02:00
|
|
|
#include "base-endpoint.h"
|
2020-01-22 18:54:45 +02:00
|
|
|
#include "client.h"
|
2019-11-19 13:31:27 -05:00
|
|
|
#include "configuration.h"
|
2019-05-17 13:08:45 +03:00
|
|
|
#include "core.h"
|
2020-01-22 18:54:45 +02:00
|
|
|
#include "device.h"
|
2019-12-09 16:35:15 +02:00
|
|
|
#include "endpoint.h"
|
2020-02-21 17:20:02 +02:00
|
|
|
#include "endpoint-stream.h"
|
2019-05-17 13:08:45 +03:00
|
|
|
#include "error.h"
|
|
|
|
|
#include "factory.h"
|
2020-01-22 18:54:45 +02:00
|
|
|
#include "link.h"
|
2019-05-17 13:08:45 +03:00
|
|
|
#include "module.h"
|
2020-01-22 18:54:45 +02:00
|
|
|
#include "node.h"
|
2019-11-13 15:44:23 +02:00
|
|
|
#include "object-manager.h"
|
2019-06-13 14:51:20 +03:00
|
|
|
#include "policy.h"
|
2020-01-22 18:54:45 +02:00
|
|
|
#include "port.h"
|
2019-08-21 15:16:13 +03:00
|
|
|
#include "properties.h"
|
2019-06-10 15:07:54 -04:00
|
|
|
#include "proxy.h"
|
2019-09-24 16:34:18 +03:00
|
|
|
#include "session.h"
|
2020-03-12 18:00:01 +02:00
|
|
|
#include "session-item.h"
|
2020-03-16 17:43:07 +02:00
|
|
|
#include "si-interfaces.h"
|
2020-03-18 17:13:52 +02:00
|
|
|
#include "si-factory.h"
|
2020-03-10 13:41:34 +02:00
|
|
|
#include "transition.h"
|
2019-09-12 16:56:35 +03:00
|
|
|
#include "wpenums.h"
|