Websockets: use unique header guards

This commit is contained in:
Robin Gareus
2020-02-23 16:13:22 +01:00
parent 5e3480ba8f
commit 8b092f8658
11 changed files with 22 additions and 22 deletions

View File

@@ -23,8 +23,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ardour_websockets_h
#define ardour_websockets_h
#ifndef _ardour_surface_websockets_h_
#define _ardour_surface_websockets_h_
#define ABSTRACT_UI_EXPORTS
#include "pbd/abstract_ui.h"

View File

@@ -16,8 +16,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef client_context_h
#define client_context_h
#ifndef _ardour_surface_websockets_client_h_
#define _ardour_surface_websockets_client_h_
#include <boost/unordered_set.hpp>
#include <list>

View File

@@ -16,8 +16,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef surface_component_h
#define surface_component_h
#ifndef _ardour_surface_websockets_component_h_
#define _ardour_surface_websockets_component_h_
#include <glibmm.h>

View File

@@ -16,8 +16,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef websockets_dispatcher_h
#define websockets_dispatcher_h
#ifndef _ardour_surface_websockets_dispatcher_h_
#define _ardour_surface_websockets_dispatcher_h_
#include <boost/unordered_map.hpp>

View File

@@ -16,8 +16,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ardour_feedback_h
#define ardour_feedback_h
#ifndef _ardour_surface_websockets_feedback_h_
#define _ardour_surface_websockets_feedback_h_
#include <boost/shared_ptr.hpp>
#include <glibmm/main.h>

View File

@@ -16,8 +16,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ardour_globals_h
#define ardour_globals_h
#ifndef _ardour_surface_websockets_globals_h_
#define _ardour_surface_websockets_globals_h_
#include "component.h"

View File

@@ -16,8 +16,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef websockets_message_h
#define websockets_message_h
#ifndef _ardour_surface_websockets_message_h_
#define _ardour_surface_websockets_message_h_
#include "state.h"

View File

@@ -16,8 +16,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef websockets_server_h
#define websockets_server_h
#ifndef _ardour_surface_websockets_server_h_
#define _ardour_surface_websockets_server_h_
#include <boost/unordered_map.hpp>
#include <glibmm.h>

View File

@@ -16,8 +16,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef node_state_h
#define node_state_h
#ifndef _ardour_surface_websockets_state_h_
#define _ardour_surface_websockets_state_h_
#include <climits>
#include <cmath>

View File

@@ -16,8 +16,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ardour_strips_h
#define ardour_strips_h
#ifndef _ardour_surface_websockets_strips_h_
#define _ardour_surface_websockets_strips_h_
#include "component.h"
#include "typed_value.h"

View File

@@ -18,8 +18,8 @@
#include <string>
#ifndef typed_value_h
#define typed_value_h
#ifndef _ardour_surface_websockets_typed_value_h_
#define _ardour_surface_websockets_typed_value_h_
class TypedValue
{