Skip to content

Commit f2fd674

Browse files
committed
dlna/common
1 parent 95c059c commit f2fd674

19 files changed

+25
-25
lines changed

src/dlna/clients/DLNAControlPoint.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#include "Client.h"
66
#include "DLNAControlPointRequestParser.h"
77
#include "basic/Url.h"
8-
#include "dlna/DLNADeviceInfo.h"
9-
#include "dlna/Schedule.h"
10-
#include "dlna/Scheduler.h"
8+
#include "dlna/common/DLNADeviceInfo.h"
9+
#include "dlna/common/Schedule.h"
10+
#include "dlna/common/Scheduler.h"
1111
#include "dlna/clients/IControlPoint.h"
1212
#include "dlna/clients/SubscriptionMgrControlPoint.h"
1313
#include "dlna/devices/DLNADevice.h"

src/dlna/clients/DLNAControlPointMediaRenderer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <functional>
55

6-
#include "dlna/Action.h"
6+
#include "dlna/common/Action.h"
77
#include "dlna/clients/DLNAControlPoint.h"
88
#include "dlna/xml/XMLProtocolInfoParser.h"
99
#include "http/Server/HttpChunkWriter.h"

src/dlna/clients/DLNAControlPointMediaServer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Header-only control point helper for MediaServer devices
22
#pragma once
33

4-
#include "dlna/Action.h"
4+
#include "dlna/common/Action.h"
55
#include "dlna/clients/DLNAControlPoint.h"
66

77
namespace tiny_dlna {

src/dlna/clients/DLNAControlPointRequestParser.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#pragma once
22

33
#include "dlna/udp/IUDPService.h"
4-
#include "dlna/Schedule.h"
5-
#include "dlna/Scheduler.h"
4+
#include "dlna/common/Schedule.h"
5+
#include "dlna/common/Scheduler.h"
66

77
namespace tiny_dlna {
88

src/dlna/clients/IControlPoint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include "Client.h"
88
#include "basic/Url.h"
9-
#include "dlna/Action.h"
9+
#include "dlna/common/Action.h"
1010
#include "dlna/udp/IUDPService.h"
1111
#include "http/Server/IHttpRequest.h"
1212
#include "http/Server/IHttpServer.h"

src/dlna/clients/SubscriptionMgrControlPoint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "basic/Url.h"
77
#include "basic/Vector.h"
8-
#include "dlna/DLNADeviceInfo.h"
8+
#include "dlna/common/DLNADeviceInfo.h"
99
#include "dlna/devices/SubscriptionMgrDevice.h"
1010
#include "dlna/udp/IUDPService.h"
1111
#include "dlna/xml/XMLParserPrint.h"

src/dlna/Action.h renamed to src/dlna/common/Action.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
#pragma once
3-
// #include "dlna/DLNAServiceInfo.h"
4-
#include "dlna/DLNACommon.h"
3+
// #include "dlnaServiceInfo.h"
4+
#include "dlna/common/DLNACommon.h"
55
#include "dlna/xml/XMLPrinter.h"
66
#include "basic/Logger.h" // ensure DlnaLogger and DlnaLogLevel declarations
77

File renamed without changes.

src/dlna/DLNADescr.h renamed to src/dlna/common/DLNADescr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include "dlna/DLNACommon.h"
3+
#include "dlna/common/DLNACommon.h"
44

55
namespace tiny_dlna {
66
/**

src/dlna/DLNADeviceInfo.h renamed to src/dlna/common/DLNADeviceInfo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
#include "basic/Icon.h"
55
#include "basic/Vector.h"
6-
#include "dlna/Action.h"
7-
#include "dlna/DLNAServiceInfo.h"
6+
#include "dlna/common/Action.h"
7+
#include "dlna/common/DLNAServiceInfo.h"
88
#include "dlna/udp/IUDPService.h" // Ensure IUDPService is declared
99
#include "dlna/xml/XMLPrinter.h"
1010
#include "http/Server/IHttpServer.h"

0 commit comments

Comments
 (0)