Skip to content

Commit

Permalink
Leave ignition as primary in headers to fix ABI
Browse files Browse the repository at this point in the history
Signed-off-by: methylDragon <[email protected]>
  • Loading branch information
methylDragon committed Aug 26, 2022
1 parent cdd8c00 commit 9283a2c
Show file tree
Hide file tree
Showing 174 changed files with 244 additions and 234 deletions.
2 changes: 1 addition & 1 deletion av/include/gz/common/AudioDecoder.hh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <gz/common/av/Export.hh>
#include <gz/common/SuppressWarning.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion av/include/gz/common/HWEncoder.hh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

/// This is an internal-use only class encapsulating HW video encoding. All
/// symbols defined here are hidden from the public API.
namespace gz::common
namespace ignition::common
{
// Forward declare private data class
class HWVideoPrivate;
Expand Down
2 changes: 1 addition & 1 deletion av/include/gz/common/HWVideo.hh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <gz/common/EnumIface.hh>

namespace gz::common
namespace ignition::common
{
enum class IGNITION_COMMON_AV_VISIBLE HWEncoderType
{
Expand Down
2 changes: 1 addition & 1 deletion av/include/gz/common/Video.hh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ struct AVFrame;
struct AVPicture;
struct SwsContext;

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion av/include/gz/common/VideoEncoder.hh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#define VIDEO_ENCODER_FPS_DEFAULT 25
#define VIDEO_ENCODER_FORMAT_DEFAULT "mp4"

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion av/include/gz/common/av/Util.hh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#ifndef GZ_COMMON_AV_UTIL_HH_
#define GZ_COMMON_AV_UTIL_HH_

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion av/include/gz/common/ffmpeg_inc.hh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ extern "C" {

#include <gz/common/av/Export.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion av/src/AudioDecoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#define AUDIO_INBUF_SIZE (20480 * 2)
#define AUDIO_REFILL_THRESH 4096

using namespace gz;
using namespace ignition;
using namespace common;

class gz::common::AudioDecoderPrivate
Expand Down
2 changes: 1 addition & 1 deletion av/src/AudioDecoder_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include "test_config.h"

using namespace gz;
using namespace ignition;

/////////////////////////////////////////////////
TEST(AudioDecoder, FileNotSet)
Expand Down
2 changes: 1 addition & 1 deletion av/src/HWEncoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "gz/common/StringUtils.hh"
#include "gz/common/Console.hh"

using namespace gz;
using namespace ignition;
using namespace common;
using namespace std;

Expand Down
2 changes: 1 addition & 1 deletion av/src/Video.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "gz/common/Video.hh"
#include "gz/common/av/Util.hh"

using namespace gz;
using namespace ignition;
using namespace common;

// Private data structure for the Video class
Expand Down
2 changes: 1 addition & 1 deletion av/src/VideoEncoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "gz/common/HWEncoder.hh"
#endif

using namespace gz;
using namespace ignition;
using namespace common;
using namespace std;

Expand Down
2 changes: 1 addition & 1 deletion av/src/VideoEncoder_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "gz/common/VideoEncoder.hh"
#include "test_config.h"

using namespace gz;
using namespace ignition;
using namespace common;

class VideoEncoderTest : public common::testing::AutoLogFixture
Expand Down
2 changes: 1 addition & 1 deletion av/src/ffmpeg_inc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
#include "gz/common/ffmpeg_inc.hh"

using namespace gz;
using namespace ignition;

//////////////////////////////////////////////////
AVFrame *common::AVFrameAlloc(void)
Expand Down
2 changes: 1 addition & 1 deletion events/include/gz/common/Event.hh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <gz/common/events/Export.hh>
#include <gz/common/events/Types.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion events/include/gz/common/KeyEvent.hh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <gz/common/events/Export.hh>
#include <gz/common/SuppressWarning.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion events/include/gz/common/MouseEvent.hh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <gz/common/events/Export.hh>
#include <gz/common/SuppressWarning.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion events/include/gz/common/events/Types.hh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <memory>

// This header contains forward declarations for some event types
namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion events/src/Event.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "gz/common/Console.hh"
#include "gz/common/Event.hh"

using namespace gz;
using namespace ignition;
using namespace common;

//////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion events/src/Event_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <functional>
#include <gz/common/Event.hh>

using namespace gz;
using namespace ignition;

class EventTest : public common::testing::AutoLogFixture { };

Expand Down
2 changes: 1 addition & 1 deletion events/src/KeyEvent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
#include "gz/common/KeyEvent.hh"

using namespace gz;
using namespace ignition;
using namespace common;

class gz::common::KeyEventPrivate
Expand Down
2 changes: 1 addition & 1 deletion events/src/KeyEvent_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <gtest/gtest.h>
#include "gz/common/KeyEvent.hh"

using namespace gz;
using namespace ignition;
using namespace common;

/////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion events/src/MouseEvent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <gz/math/Vector2.hh>
#include "gz/common/MouseEvent.hh"

using namespace gz;
using namespace ignition;
using namespace common;

/// \brief Mouse event private data
Expand Down
2 changes: 1 addition & 1 deletion events/src/MouseEvent_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include "gz/common/MouseEvent.hh"
#include "gz/common/config.hh"

using namespace gz;
using namespace ignition;

class MouseEvent : public common::testing::AutoLogFixture { };

Expand Down
2 changes: 1 addition & 1 deletion examples/events.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <iostream>
#include <gz/common/Event.hh>

using namespace gz;
using namespace ignition;

int g_callback = 0;
common::EventT<void ()> g_event;
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/Animation.hh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#include <gz/common/graphics/Export.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/BVHLoader.hh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include <gz/math/Pose3.hh>
#include <gz/common/graphics/Export.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/ColladaExporter.hh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#include <gz/math/Matrix4.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/ColladaLoader.hh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <gz/common/graphics/Export.hh>
#include <gz/common/MeshLoader.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/Dem.hh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

# include <ignition/common/HeightmapData.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/GTSMeshUtils.hh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
struct _GtsSurface;
typedef _GtsSurface GtsSurface;

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/HeightmapData.hh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <gz/math/Vector3.hh>
#include <gz/common/graphics/Export.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/Image.hh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <gz/common/graphics/Export.hh>
#include <gz/common/SuppressWarning.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/ImageHeightmap.hh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <gz/common/HeightmapData.hh>
#include <gz/common/Image.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/KeyFrame.hh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <gz/math/Quaternion.hh>
#include <gz/common/graphics/Export.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/Material.hh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <gz/common/Pbr.hh>
#include <gz/common/SuppressWarning.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/Mesh.hh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include <gz/common/graphics/Export.hh>
#include <gz/common/SuppressWarning.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/MeshCSG.hh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ typedef _GtsSurface GtsSurface;
struct _GPtrArray;
typedef _GPtrArray GPtrArray;

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/MeshExporter.hh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <string>
#include <gz/common/graphics/Export.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/MeshLoader.hh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include <gz/common/graphics/Export.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/MeshManager.hh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include <gz/common/graphics/Export.hh>
#include <gz/common/SuppressWarning.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/NodeAnimation.hh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

#include <gz/common/graphics/Export.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/NodeTransform.hh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <gz/common/graphics/Export.hh>
#include <gz/common/Util.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
2 changes: 1 addition & 1 deletion graphics/include/gz/common/OBJLoader.hh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <gz/common/graphics/Export.hh>
#include <gz/common/SuppressWarning.hh>

namespace gz
namespace ignition
{
namespace common
{
Expand Down
Loading

0 comments on commit 9283a2c

Please sign in to comment.