Skip to content

Commit

Permalink
Build: satisfy cpplint
Browse files Browse the repository at this point in the history
- Add missing includes.

Signed-off-by: Rhys Mainwaring <rhys.mainwaring@me.com>
  • Loading branch information
srmainwaring committed Dec 30, 2024
1 parent 962f846 commit 68b758c
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gz-waves/src/systems/waves/BaseRenderEngineExtension.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@

#include "BaseRenderEngineExtension.hh"

#include <map>
#include <string>

#include <gz/common/Console.hh>

namespace gz
Expand Down
2 changes: 2 additions & 0 deletions gz-waves/src/systems/waves/Ogre2DynamicMesh.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@

#include "Ogre2DynamicMesh.hh"

#include <vector>

// Note this include is placed in the src file because
// otherwise ogre produces compile errors
#ifdef _MSC_VER
Expand Down
2 changes: 2 additions & 0 deletions gz-waves/src/systems/waves/Ogre2OceanGeometry.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

#include "Ogre2OceanGeometry.hh"

#include <string>

#include <gz/common/Console.hh>
#include <gz/rendering/ogre2/Ogre2Material.hh>
#include <gz/rendering/ogre2/Ogre2Scene.hh>
Expand Down
3 changes: 3 additions & 0 deletions gz-waves/src/systems/waves/Ogre2OceanVisual.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@

#include "Ogre2OceanVisual.hh"

#include <memory>
#include <string>

#include <gz/common/Console.hh>
#include <gz/common/SubMesh.hh>
#include <gz/rendering/ogre2/Ogre2Material.hh>
Expand Down
4 changes: 4 additions & 0 deletions gz-waves/src/systems/waves/Ogre2RenderEngineExtension.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@

#include "Ogre2RenderEngineExtension.hh"

#include <map>
#include <memory>
#include <string>

#include <gz/common/Console.hh>
#include <gz/plugin/Register.hh>

Expand Down
3 changes: 3 additions & 0 deletions gz-waves/src/systems/waves/RenderEngineExtensionManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@
*
*/

#include <list>
#include <map>
#include <mutex>
#include <string>
#include <vector>

#include <gz/common/Console.hh>
#include <gz/common/SystemPaths.hh>
Expand Down
1 change: 1 addition & 0 deletions gz-waves/src/systems/waves/WavesModel.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

#include <chrono>
#include <list>
#include <memory>
#include <mutex>
#include <vector>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions gz-waves/src/systems/waves/WavesVisual.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
#include <chrono>
#include <list>
#include <map>
#include <memory>
#include <mutex>
#include <utility>
#include <vector>
Expand Down

0 comments on commit 68b758c

Please sign in to comment.