Constants.h
Go to the documentation of this file.
1 /****
2  * Constants.h
3  *
4  * Copyright 2020 mikee47 <mike@sillyhouse.net>
5  *
6  * This file is part of the Sming UPnP Library
7  *
8  * This library is free software: you can redistribute it and/or modify it under the terms of the
9  * GNU General Public License as published by the Free Software Foundation, version 3 or later.
10  *
11  * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
12  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  * See the GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along with this library.
16  * If not, see <https://www.gnu.org/licenses/>.
17  *
18  ****/
19 
20 #pragma once
21 
22 #include <FlashString/String.hpp>
23 
24 namespace UPnP
25 {
26 DECLARE_FSTR(fs_xmlns)
27 
28 namespace schemas_upnp_org
29 {
30 DECLARE_FSTR(device_1_0)
31 DECLARE_FSTR(service_1_0)
32 DECLARE_FSTR(control_1_0)
33 
34 namespace device
35 {
36 DECLARE_FSTR(Basic)
37 }
38 
39 } // namespace schemas_upnp_org
40 
41 } // namespace UPnP
#define DECLARE_FSTR(name)
Declare a global FSTR::String& reference.
Definition: String.hpp:63
Definition: ActionRequest.h:25