Commit b03811bf authored by Thomas Braun's avatar Thomas Braun
Browse files

tango/common/idl_wrapper.h: Introduce it

Up to now one had to include tango/common/tango_const.h for getting the
warning free version of tango/idl/tango.h. As this is very unintuitive and
not error prone, let's introdude a wrapper header which everyone can
include.

This is done in the same spirit as omnithread_wrapper.h from 7bf8f11a
(Windows support for the replacement of tango/tango.h, 2025-05-06).
parent b9dfe3f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,8 +9,8 @@
#include <tango/internal/parse.h>

#include <tango/client/Database.h>
#include <tango/common/idl_wrapper.h>
#include <tango/common/tango_const.h>
#include <tango/idl/tango.h>

#include <omniORB4/CORBA.h>

+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
#include <tango/client/DbDatum.h>
#include <tango/client/DbDevInfo.h>
#include <tango/client/DeviceProxy.h>
#include <tango/idl/tango.h>
#include <tango/common/idl_wrapper.h>
#include <tango/server/Except.h>

#include <sstream>
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
#ifndef TANGO_CLIENT_NAMEDDEVFAILED_H
#define TANGO_CLIENT_NAMEDDEVFAILED_H

#include <tango/idl/tango.h>
#include <tango/common/idl_wrapper.h>

#include <string>

+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
#define TANGO_CLIENT_NAMEDDEVFAILEDLIST_H

#include <tango/client/NamedDevFailed.h>
#include <tango/idl/tango.h>
#include <tango/common/idl_wrapper.h>

#include <string>
#include <vector>
+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ set(COMMON_HEADERS
    tango_const.h
    tango_type_traits.h
    git_revision.h
    idl_wrapper.h
    PointerWithLock.h
    omnithread_wrapper.h
)
Loading