From a04c4965e3df113125b82d1b921043898d60ba6c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 11 May 2012 04:38:12 +0000 Subject: Add missing includes. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4348 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/Interface.hpp | 2 ++ ingen/client/PluginModel.hpp | 1 + ingen/client/SigClientInterface.hpp | 2 ++ ingen/shared/AtomWriter.hpp | 2 ++ ingen/shared/ClashAvoider.hpp | 1 + ingen/shared/Forge.hpp | 2 ++ src/bindings/Client.hpp | 2 ++ src/client/NodeModel.cpp | 1 + src/client/PluginModel.cpp | 6 +++++- src/gui/App.cpp | 1 + src/gui/BreadCrumbs.cpp | 3 +++ src/gui/Configuration.cpp | 3 ++- src/gui/LoadPatchWindow.cpp | 2 ++ src/gui/LoadPluginWindow.cpp | 2 ++ src/gui/LoadPluginWindow.hpp | 1 + src/gui/NewSubpatchWindow.cpp | 2 ++ src/gui/NodeMenu.cpp | 2 ++ src/gui/NodeModule.cpp | 1 + src/gui/PatchBox.cpp | 1 + src/gui/PatchBox.hpp | 2 ++ src/gui/PatchCanvas.cpp | 1 + src/gui/PatchPortModule.cpp | 1 + src/gui/PatchWindow.hpp | 2 ++ src/gui/Port.cpp | 7 +++++-- src/gui/PortMenu.hpp | 5 ++++- src/gui/PortPropertiesWindow.cpp | 1 + src/gui/PortPropertiesWindow.hpp | 2 ++ src/gui/PropertiesWindow.cpp | 2 ++ src/gui/PropertiesWindow.hpp | 2 ++ src/gui/WidgetFactory.cpp | 1 + src/gui/WindowFactory.cpp | 8 +++++--- src/serialisation/Parser.cpp | 3 +++ src/server/ControlBindings.cpp | 2 ++ src/server/JackDriver.cpp | 1 - src/server/PatchImpl.hpp | 1 + src/server/events/CreateNode.cpp | 13 ++++++------- src/server/events/CreatePort.cpp | 3 ++- src/server/events/Disconnect.cpp | 2 ++ src/server/events/SetMetadata.cpp | 1 + src/server/events/SetMetadata.hpp | 2 ++ src/server/ingen_jack.cpp | 2 ++ src/server/internals/Controller.cpp | 2 ++ src/server/internals/Delay.cpp | 4 +++- src/server/internals/Note.cpp | 1 + src/server/internals/Trigger.cpp | 1 + src/shared/AtomWriter.cpp | 2 ++ src/shared/ClashAvoider.cpp | 2 ++ src/shared/Forge.cpp | 1 + src/shared/ResourceImpl.cpp | 2 ++ src/shared/Store.cpp | 8 +++++--- src/shared/World.cpp | 3 +++ src/shared/runtime_paths.cpp | 2 ++ src/socket/SocketClient.hpp | 2 ++ src/socket/ingen_socket_client.cpp | 2 ++ wscript | 2 +- 55 files changed, 113 insertions(+), 22 deletions(-) diff --git a/ingen/Interface.hpp b/ingen/Interface.hpp index 96a438a9..81a4100d 100644 --- a/ingen/Interface.hpp +++ b/ingen/Interface.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_INTERFACE_HPP #define INGEN_INTERFACE_HPP +#include + #include "ingen/Resource.hpp" #include "ingen/Status.hpp" #include "raul/SharedPtr.hpp" diff --git a/ingen/client/PluginModel.hpp b/ingen/client/PluginModel.hpp index 46e7b116..f7000065 100644 --- a/ingen/client/PluginModel.hpp +++ b/ingen/client/PluginModel.hpp @@ -18,6 +18,7 @@ #define INGEN_CLIENT_PLUGINMODEL_HPP #include +#include #include #include "lilv/lilv.h" diff --git a/ingen/client/SigClientInterface.hpp b/ingen/client/SigClientInterface.hpp index 319ed228..dbc655dd 100644 --- a/ingen/client/SigClientInterface.hpp +++ b/ingen/client/SigClientInterface.hpp @@ -19,6 +19,8 @@ #include +#include + #include "raul/Path.hpp" #include "ingen/Interface.hpp" diff --git a/ingen/shared/AtomWriter.hpp b/ingen/shared/AtomWriter.hpp index 32997c66..1eae7a80 100644 --- a/ingen/shared/AtomWriter.hpp +++ b/ingen/shared/AtomWriter.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_SHARED_ATOM_WRITER_HPP #define INGEN_SHARED_ATOM_WRITER_HPP +#include + #include "ingen/Interface.hpp" #include "ingen/shared/URIs.hpp" #include "lv2/lv2plug.in/ns/ext/atom/forge.h" diff --git a/ingen/shared/ClashAvoider.hpp b/ingen/shared/ClashAvoider.hpp index 5b62ef53..77be091e 100644 --- a/ingen/shared/ClashAvoider.hpp +++ b/ingen/shared/ClashAvoider.hpp @@ -20,6 +20,7 @@ #include #include +#include #include "ingen/Interface.hpp" diff --git a/ingen/shared/Forge.hpp b/ingen/shared/Forge.hpp index 8f7facb2..36de8758 100644 --- a/ingen/shared/Forge.hpp +++ b/ingen/shared/Forge.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_FORGE_HPP #define INGEN_FORGE_HPP +#include + #include "ingen/shared/Forge.hpp" #include "raul/Atom.hpp" diff --git a/src/bindings/Client.hpp b/src/bindings/Client.hpp index b8278ea1..f8dd84ff 100644 --- a/src/bindings/Client.hpp +++ b/src/bindings/Client.hpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include "ingen/Resource.hpp" /** Need a stub ClientInterface without pure virtual methods diff --git a/src/client/NodeModel.cpp b/src/client/NodeModel.cpp index f80aa68d..ad3ce273 100644 --- a/src/client/NodeModel.cpp +++ b/src/client/NodeModel.cpp @@ -16,6 +16,7 @@ #include #include +#include #include "ingen/Port.hpp" #include "ingen/client/NodeModel.hpp" diff --git a/src/client/PluginModel.cpp b/src/client/PluginModel.cpp index e6ac0a52..4847f668 100644 --- a/src/client/PluginModel.cpp +++ b/src/client/PluginModel.cpp @@ -14,8 +14,12 @@ along with Ingen. If not, see . */ -#include #include + +#include +#include +#include + #include #include "raul/Atom.hpp" diff --git a/src/gui/App.cpp b/src/gui/App.cpp index f56f6f41..becc309c 100644 --- a/src/gui/App.cpp +++ b/src/gui/App.cpp @@ -17,6 +17,7 @@ #include #include #include +#include #include diff --git a/src/gui/BreadCrumbs.cpp b/src/gui/BreadCrumbs.cpp index a5c78f39..adc9526d 100644 --- a/src/gui/BreadCrumbs.cpp +++ b/src/gui/BreadCrumbs.cpp @@ -14,6 +14,9 @@ along with Ingen. If not, see . */ +#include +#include + #include "ingen/client/SigClientInterface.hpp" #include "App.hpp" diff --git a/src/gui/Configuration.cpp b/src/gui/Configuration.cpp index 6754fd42..f3b1351b 100644 --- a/src/gui/Configuration.cpp +++ b/src/gui/Configuration.cpp @@ -14,10 +14,11 @@ along with Ingen. If not, see . */ -#include #include +#include #include #include +#include #include "ganv/Port.hpp" #include "ingen/client/PluginModel.hpp" diff --git a/src/gui/LoadPatchWindow.cpp b/src/gui/LoadPatchWindow.cpp index 68d51d2d..94142868 100644 --- a/src/gui/LoadPatchWindow.cpp +++ b/src/gui/LoadPatchWindow.cpp @@ -15,6 +15,8 @@ */ #include +#include +#include #include #include diff --git a/src/gui/LoadPluginWindow.cpp b/src/gui/LoadPluginWindow.cpp index 8eda5400..832f79f4 100644 --- a/src/gui/LoadPluginWindow.cpp +++ b/src/gui/LoadPluginWindow.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include #include diff --git a/src/gui/LoadPluginWindow.hpp b/src/gui/LoadPluginWindow.hpp index 9d456e4a..31710d96 100644 --- a/src/gui/LoadPluginWindow.hpp +++ b/src/gui/LoadPluginWindow.hpp @@ -18,6 +18,7 @@ #define INGEN_GUI_LOADPLUGINWINDOW_HPP #include +#include #include diff --git a/src/gui/NewSubpatchWindow.cpp b/src/gui/NewSubpatchWindow.cpp index 9e815df1..e03f7d9b 100644 --- a/src/gui/NewSubpatchWindow.cpp +++ b/src/gui/NewSubpatchWindow.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include "ingen/Interface.hpp" #include "ingen/client/ClientStore.hpp" #include "ingen/client/PatchModel.hpp" diff --git a/src/gui/NodeMenu.cpp b/src/gui/NodeMenu.cpp index f6c8a4b1..ed9b0fbf 100644 --- a/src/gui/NodeMenu.cpp +++ b/src/gui/NodeMenu.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include #include "ingen/Interface.hpp" diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp index 7d9fa2f6..6a7a424a 100644 --- a/src/gui/NodeModule.cpp +++ b/src/gui/NodeModule.cpp @@ -15,6 +15,7 @@ */ #include +#include #include "ingen/Interface.hpp" #include "ingen/client/NodeModel.hpp" diff --git a/src/gui/PatchBox.cpp b/src/gui/PatchBox.cpp index dbf011ce..d9e14373 100644 --- a/src/gui/PatchBox.cpp +++ b/src/gui/PatchBox.cpp @@ -16,6 +16,7 @@ #include #include +#include #include #include diff --git a/src/gui/PatchBox.hpp b/src/gui/PatchBox.hpp index 34d70aa7..3df24cf9 100644 --- a/src/gui/PatchBox.hpp +++ b/src/gui/PatchBox.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_GUI_PATCH_BOX_HPP #define INGEN_GUI_PATCH_BOX_HPP +#include + #include #include "raul/SharedPtr.hpp" diff --git a/src/gui/PatchCanvas.cpp b/src/gui/PatchCanvas.cpp index 20e3e82a..1f02371c 100644 --- a/src/gui/PatchCanvas.cpp +++ b/src/gui/PatchCanvas.cpp @@ -16,6 +16,7 @@ #include #include +#include #include #include diff --git a/src/gui/PatchPortModule.cpp b/src/gui/PatchPortModule.cpp index 3961eacf..5ea90f55 100644 --- a/src/gui/PatchPortModule.cpp +++ b/src/gui/PatchPortModule.cpp @@ -15,6 +15,7 @@ */ #include +#include #include #include "ingen/Interface.hpp" diff --git a/src/gui/PatchWindow.hpp b/src/gui/PatchWindow.hpp index c6a73210..ba4b372f 100644 --- a/src/gui/PatchWindow.hpp +++ b/src/gui/PatchWindow.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_GUI_PATCH_WINDOW_HPP #define INGEN_GUI_PATCH_WINDOW_HPP +#include + #include #include "raul/SharedPtr.hpp" diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp index cbb98268..982e586f 100644 --- a/src/gui/Port.cpp +++ b/src/gui/Port.cpp @@ -15,17 +15,20 @@ */ #include -#include "raul/log.hpp" +#include + #include "ganv/Module.hpp" #include "ingen/Interface.hpp" #include "ingen/client/PatchModel.hpp" #include "ingen/client/PortModel.hpp" +#include "raul/log.hpp" + #include "App.hpp" #include "Configuration.hpp" -#include "WidgetFactory.hpp" #include "PatchWindow.hpp" #include "Port.hpp" #include "PortMenu.hpp" +#include "WidgetFactory.hpp" #include "WindowFactory.hpp" using namespace Ingen::Client; diff --git a/src/gui/PortMenu.hpp b/src/gui/PortMenu.hpp index cba9359d..59a9888e 100644 --- a/src/gui/PortMenu.hpp +++ b/src/gui/PortMenu.hpp @@ -18,9 +18,12 @@ #define INGEN_GUI_PORTMENU_HPP #include + #include -#include "raul/SharedPtr.hpp" + #include "ingen/client/PortModel.hpp" +#include "raul/SharedPtr.hpp" + #include "ObjectMenu.hpp" namespace Ingen { diff --git a/src/gui/PortPropertiesWindow.cpp b/src/gui/PortPropertiesWindow.cpp index b7df2445..668aaa88 100644 --- a/src/gui/PortPropertiesWindow.cpp +++ b/src/gui/PortPropertiesWindow.cpp @@ -15,6 +15,7 @@ */ #include +#include #include #include "ingen/Interface.hpp" diff --git a/src/gui/PortPropertiesWindow.hpp b/src/gui/PortPropertiesWindow.hpp index 479f7d0b..97426b04 100644 --- a/src/gui/PortPropertiesWindow.hpp +++ b/src/gui/PortPropertiesWindow.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_GUI_PORTPROPERTIESWINDOW_HPP #define INGEN_GUI_PORTPROPERTIESWINDOW_HPP +#include + #include #include "raul/SharedPtr.hpp" diff --git a/src/gui/PropertiesWindow.cpp b/src/gui/PropertiesWindow.cpp index 07e01d0f..f1ee032d 100644 --- a/src/gui/PropertiesWindow.cpp +++ b/src/gui/PropertiesWindow.cpp @@ -14,8 +14,10 @@ along with Ingen. If not, see . */ +#include #include #include + #include "raul/log.hpp" #include "ingen/shared/World.hpp" #include "ingen/client/NodeModel.hpp" diff --git a/src/gui/PropertiesWindow.hpp b/src/gui/PropertiesWindow.hpp index c545be92..62cf2264 100644 --- a/src/gui/PropertiesWindow.hpp +++ b/src/gui/PropertiesWindow.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_GUI_PROPERTIES_WINDOW_HPP #define INGEN_GUI_PROPERTIES_WINDOW_HPP +#include + #include #include "raul/SharedPtr.hpp" diff --git a/src/gui/WidgetFactory.cpp b/src/gui/WidgetFactory.cpp index db0c561f..572b3870 100644 --- a/src/gui/WidgetFactory.cpp +++ b/src/gui/WidgetFactory.cpp @@ -15,6 +15,7 @@ */ #include +#include #include "raul/log.hpp" diff --git a/src/gui/WindowFactory.cpp b/src/gui/WindowFactory.cpp index adcdd131..2454a726 100644 --- a/src/gui/WindowFactory.cpp +++ b/src/gui/WindowFactory.cpp @@ -15,18 +15,20 @@ */ #include -#include "ingen_config.h" + #include "ingen/client/PatchModel.hpp" + #include "App.hpp" -#include "WidgetFactory.hpp" #include "LoadPatchWindow.hpp" #include "LoadPluginWindow.hpp" #include "NewSubpatchWindow.hpp" -#include "PropertiesWindow.hpp" #include "PatchView.hpp" #include "PatchWindow.hpp" +#include "PropertiesWindow.hpp" #include "RenameWindow.hpp" +#include "WidgetFactory.hpp" #include "WindowFactory.hpp" +#include "ingen_config.h" using namespace std; diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp index 5f351bd3..df17d7ff 100644 --- a/src/serialisation/Parser.cpp +++ b/src/serialisation/Parser.cpp @@ -14,7 +14,10 @@ along with Ingen. If not, see . */ +#include #include +#include +#include #include #include diff --git a/src/server/ControlBindings.cpp b/src/server/ControlBindings.cpp index 2ff5259b..07470b8f 100644 --- a/src/server/ControlBindings.cpp +++ b/src/server/ControlBindings.cpp @@ -16,6 +16,8 @@ #include +#include + #include "ingen/shared/URIs.hpp" #include "ingen/shared/World.hpp" #include "lv2/lv2plug.in/ns/ext/atom/util.h" diff --git a/src/server/JackDriver.cpp b/src/server/JackDriver.cpp index da2d434a..edebff55 100644 --- a/src/server/JackDriver.cpp +++ b/src/server/JackDriver.cpp @@ -38,7 +38,6 @@ #include "DuplexPort.hpp" #include "Engine.hpp" #include "Event.hpp" -#include "Event.hpp" #include "JackDriver.hpp" #include "MessageContext.hpp" #include "PatchImpl.hpp" diff --git a/src/server/PatchImpl.hpp b/src/server/PatchImpl.hpp index 872993ce..5a0dbc9a 100644 --- a/src/server/PatchImpl.hpp +++ b/src/server/PatchImpl.hpp @@ -18,6 +18,7 @@ #define INGEN_ENGINE_PATCHIMPL_HPP #include +#include #include #include "ingen/Patch.hpp" diff --git a/src/server/events/CreateNode.cpp b/src/server/events/CreateNode.cpp index 2b9c6766..a90979ff 100644 --- a/src/server/events/CreateNode.cpp +++ b/src/server/events/CreateNode.cpp @@ -20,17 +20,16 @@ #include "raul/log.hpp" #include "sord/sordmm.hpp" +#include "ClientBroadcaster.hpp" #include "CreateNode.hpp" -#include "PatchImpl.hpp" -#include "NodeImpl.hpp" -#include "PluginImpl.hpp" +#include "Driver.hpp" #include "Engine.hpp" -#include "PatchImpl.hpp" -#include "NodeFactory.hpp" -#include "ClientBroadcaster.hpp" #include "EngineStore.hpp" +#include "NodeFactory.hpp" +#include "NodeImpl.hpp" +#include "PatchImpl.hpp" +#include "PluginImpl.hpp" #include "PortImpl.hpp" -#include "Driver.hpp" namespace Ingen { namespace Server { diff --git a/src/server/events/CreatePort.cpp b/src/server/events/CreatePort.cpp index 872b79c4..92121fb8 100644 --- a/src/server/events/CreatePort.cpp +++ b/src/server/events/CreatePort.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include "ingen/shared/URIMap.hpp" #include "ingen/shared/URIs.hpp" #include "raul/Array.hpp" @@ -29,7 +31,6 @@ #include "Engine.hpp" #include "EngineStore.hpp" #include "PatchImpl.hpp" -#include "PatchImpl.hpp" #include "PluginImpl.hpp" #include "PortImpl.hpp" diff --git a/src/server/events/Disconnect.cpp b/src/server/events/Disconnect.cpp index 6d3ae31f..9396d1fe 100644 --- a/src/server/events/Disconnect.cpp +++ b/src/server/events/Disconnect.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include #include "raul/Maid.hpp" diff --git a/src/server/events/SetMetadata.cpp b/src/server/events/SetMetadata.cpp index 5d447895..842d7cdf 100644 --- a/src/server/events/SetMetadata.cpp +++ b/src/server/events/SetMetadata.cpp @@ -15,6 +15,7 @@ */ #include +#include #include diff --git a/src/server/events/SetMetadata.hpp b/src/server/events/SetMetadata.hpp index e1bc0c55..7f5d82b4 100644 --- a/src/server/events/SetMetadata.hpp +++ b/src/server/events/SetMetadata.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_EVENTS_SETMETADATA_HPP #define INGEN_EVENTS_SETMETADATA_HPP +#include + #include #include diff --git a/src/server/ingen_jack.cpp b/src/server/ingen_jack.cpp index 928996e5..415a57a2 100644 --- a/src/server/ingen_jack.cpp +++ b/src/server/ingen_jack.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include "ingen/shared/Configuration.hpp" #include "ingen/shared/Module.hpp" #include "ingen/shared/World.hpp" diff --git a/src/server/internals/Controller.cpp b/src/server/internals/Controller.cpp index 2b68966f..1e6cc594 100644 --- a/src/server/internals/Controller.cpp +++ b/src/server/internals/Controller.cpp @@ -16,6 +16,8 @@ #include +#include + #include "ingen/shared/URIs.hpp" #include "internals/Controller.hpp" #include "lv2/lv2plug.in/ns/ext/atom/util.h" diff --git a/src/server/internals/Delay.cpp b/src/server/internals/Delay.cpp index 315ba4e4..fa0cb897 100644 --- a/src/server/internals/Delay.cpp +++ b/src/server/internals/Delay.cpp @@ -14,9 +14,11 @@ along with Ingen. If not, see . */ -#include #include +#include +#include + #include "ingen/shared/URIs.hpp" #include "raul/Array.hpp" #include "raul/Maid.hpp" diff --git a/src/server/internals/Note.cpp b/src/server/internals/Note.cpp index f488f898..9e7fbb04 100644 --- a/src/server/internals/Note.cpp +++ b/src/server/internals/Note.cpp @@ -15,6 +15,7 @@ */ #include +#include #include "ingen/shared/URIs.hpp" #include "lv2/lv2plug.in/ns/ext/atom/util.h" diff --git a/src/server/internals/Trigger.cpp b/src/server/internals/Trigger.cpp index 2224e39f..ae06d3b6 100644 --- a/src/server/internals/Trigger.cpp +++ b/src/server/internals/Trigger.cpp @@ -15,6 +15,7 @@ */ #include +#include #include "ingen/shared/URIs.hpp" #include "lv2/lv2plug.in/ns/ext/atom/util.h" diff --git a/src/shared/AtomWriter.cpp b/src/shared/AtomWriter.cpp index ab65f435..a1ce8fb1 100644 --- a/src/shared/AtomWriter.cpp +++ b/src/shared/AtomWriter.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include "ingen/shared/AtomSink.hpp" #include "ingen/shared/AtomWriter.hpp" #include "ingen/shared/URIMap.hpp" diff --git a/src/shared/ClashAvoider.cpp b/src/shared/ClashAvoider.cpp index 89771b0f..8e6683e8 100644 --- a/src/shared/ClashAvoider.cpp +++ b/src/shared/ClashAvoider.cpp @@ -16,6 +16,8 @@ #include #include +#include +#include #include "raul/log.hpp" diff --git a/src/shared/Forge.cpp b/src/shared/Forge.cpp index c481b50e..8565f249 100644 --- a/src/shared/Forge.cpp +++ b/src/shared/Forge.cpp @@ -15,6 +15,7 @@ */ #include +#include #include "ingen/shared/Forge.hpp" #include "ingen/shared/URIMap.hpp" diff --git a/src/shared/ResourceImpl.cpp b/src/shared/ResourceImpl.cpp index 9d97d5df..622c9c06 100644 --- a/src/shared/ResourceImpl.cpp +++ b/src/shared/ResourceImpl.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include "ingen/shared/ResourceImpl.hpp" #include "ingen/shared/URIs.hpp" #include "raul/Atom.hpp" diff --git a/src/shared/Store.cpp b/src/shared/Store.cpp index c0d373d6..821322e7 100644 --- a/src/shared/Store.cpp +++ b/src/shared/Store.cpp @@ -15,12 +15,14 @@ */ #include -#include "raul/log.hpp" -#include "raul/PathTable.hpp" -#include "raul/TableImpl.hpp" +#include + #include "ingen/Node.hpp" #include "ingen/Port.hpp" #include "ingen/shared/Store.hpp" +#include "raul/PathTable.hpp" +#include "raul/TableImpl.hpp" +#include "raul/log.hpp" using namespace std; diff --git a/src/shared/World.cpp b/src/shared/World.cpp index d5c29e9c..aeb9e641 100644 --- a/src/shared/World.cpp +++ b/src/shared/World.cpp @@ -14,6 +14,9 @@ along with Ingen. If not, see . */ +#include +#include + #include #include #include diff --git a/src/shared/runtime_paths.cpp b/src/shared/runtime_paths.cpp index 48b670bc..8439b248 100644 --- a/src/shared/runtime_paths.cpp +++ b/src/shared/runtime_paths.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include #include diff --git a/src/socket/SocketClient.hpp b/src/socket/SocketClient.hpp index f216a166..a58f92a5 100644 --- a/src/socket/SocketClient.hpp +++ b/src/socket/SocketClient.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_SOCKET_SOCKET_CLIENT_HPP #define INGEN_SOCKET_SOCKET_CLIENT_HPP +#include + #include "SocketReader.hpp" #include "SocketWriter.hpp" diff --git a/src/socket/ingen_socket_client.cpp b/src/socket/ingen_socket_client.cpp index 8b57683c..b10d598e 100644 --- a/src/socket/ingen_socket_client.cpp +++ b/src/socket/ingen_socket_client.cpp @@ -14,6 +14,8 @@ along with Ingen. If not, see . */ +#include + #include "ingen/shared/Module.hpp" #include "ingen/shared/World.hpp" #include "raul/log.hpp" diff --git a/wscript b/wscript index a1d4c7bb..e260047a 100644 --- a/wscript +++ b/wscript @@ -173,4 +173,4 @@ def build(bld): bld.add_post_fun(autowaf.run_ldconfig) def lint(ctx): - subprocess.call('cpplint.py --filter=-whitespace/comments,-whitespace/tab,-whitespace/braces,-whitespace/labels,-build/header_guard,-readability/casting,-readability/todo,-build/include,-build/namespaces,-whitespace/line_length,-runtime/rtti,-runtime/references,-whitespace/blank_line,-runtime/sizeof,-readability/streams,-whitespace/operators,-whitespace/parens `find -name *.cpp -or -name *.hpp`', shell=True) + subprocess.call('cpplint.py --filter=-whitespace/comments,-whitespace/tab,-whitespace/braces,-whitespace/labels,+build/header_guard,-readability/casting,-readability/todo,-build/namespaces,-whitespace/line_length,-runtime/rtti,-runtime/references,-whitespace/blank_line,-runtime/sizeof,-readability/streams,-whitespace/operators,-whitespace/parens,-build/include_order `find -name *.cpp -or -name *.hpp`', shell=True) -- cgit v1.2.1