Commit 8c2a5037 authored by Thomas Braun's avatar Thomas Braun
Browse files

include/tango/common/utils: Move not-installed files into internal folder

In that way the separation is cleaner.
parent 7a90b9cf
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -29,8 +29,9 @@
  #include <ws2tcpip.h>
#endif

#include <tango/internal/event_system_info.h>

#include <tango/common/PointerWithLock.h>
#include <tango/common/utils/event_system_info.h>

namespace
{
+1 −1
Original line number Diff line number Diff line
@@ -7,11 +7,11 @@
#include <tango/client/filedatabase.h>

#include <tango/internal/parse.h>
#include <tango/internal/type_info.h>

#include <tango/client/ApiExcept.h>
#include <tango/common/tango_const.h>
#include <tango/common/tango_type_traits.h>
#include <tango/common/utils/type_info.h>
#include <tango/server/Except.h>
#include <tango/server/Logging.h>

+3 −2
Original line number Diff line number Diff line
@@ -5,6 +5,9 @@
 */
#include <tango/internal/utils.h>

#include <tango/internal/event_system_info.h>
#include <tango/internal/type_info.h>

#include <tango/client/ApiUtil.h>
#include <tango/client/Database.h>
#include <tango/client/DeviceAttribute.h>
@@ -13,8 +16,6 @@
#include <tango/common/tango_const.h>
#include <tango/common/tango_type_traits.h>
#include <tango/common/utils/assert.h>
#include <tango/common/utils/event_system_info.h>
#include <tango/common/utils/type_info.h>
#include <tango/server/Except.h>
#include <tango/server/SeqVec.h>
#include <tango/server/ZmqEventSupplier.h>
+2 −2
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@
 *
 * SPDX-License-Identifier: LGPL-3.0-or-later
 */
#ifndef TANGO_COMMON_UTILS_EVENT_SYSTEM_INFO_H
#define TANGO_COMMON_UTILS_EVENT_SYSTEM_INFO_H
#ifndef TANGO_INTERNAL_EVENT_SYSTEM_INFO_H
#define TANGO_INTERNAL_EVENT_SYSTEM_INFO_H

#include <string>

+2 −2
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@
 *
 * SPDX-License-Identifier: LGPL-3.0-or-later
 */
#ifndef TANGO_COMMON_UTILS_TYPE_INFO_H
#define TANGO_COMMON_UTILS_TYPE_INFO_H
#ifndef TANGO_INTERNAL_TYPE_INFO_H
#define TANGO_INTERNAL_TYPE_INFO_H

#include <tango/common/tango_const.h>

Loading