diff options
author | David Robillard <d@drobilla.net> | 2012-05-11 04:38:12 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-11 04:38:12 +0000 |
commit | a04c4965e3df113125b82d1b921043898d60ba6c (patch) | |
tree | 848e5c944e6af257f7c9da3ddd487e29ec226c63 /src/shared | |
parent | f90d64eb7d90dc03fe4215bef8d77de51ca0ae78 (diff) | |
download | ingen-a04c4965e3df113125b82d1b921043898d60ba6c.tar.gz ingen-a04c4965e3df113125b82d1b921043898d60ba6c.tar.bz2 ingen-a04c4965e3df113125b82d1b921043898d60ba6c.zip |
Add missing includes.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4348 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/AtomWriter.cpp | 2 | ||||
-rw-r--r-- | src/shared/ClashAvoider.cpp | 2 | ||||
-rw-r--r-- | src/shared/Forge.cpp | 1 | ||||
-rw-r--r-- | src/shared/ResourceImpl.cpp | 2 | ||||
-rw-r--r-- | src/shared/Store.cpp | 8 | ||||
-rw-r--r-- | src/shared/World.cpp | 3 | ||||
-rw-r--r-- | src/shared/runtime_paths.cpp | 2 |
7 files changed, 17 insertions, 3 deletions
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 <http://www.gnu.org/licenses/>. */ +#include <string> + #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 <cstdio> #include <sstream> +#include <string> +#include <utility> #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 <sstream> +#include <string> #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 <http://www.gnu.org/licenses/>. */ +#include <utility> + #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 <sstream> -#include "raul/log.hpp" -#include "raul/PathTable.hpp" -#include "raul/TableImpl.hpp" +#include <string> + #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 <http://www.gnu.org/licenses/>. */ +#include <map> +#include <string> + #include <glibmm/fileutils.h> #include <glibmm/miscutils.h> #include <glibmm/module.h> 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 <http://www.gnu.org/licenses/>. */ +#include <string> + #include <limits.h> #include <stdlib.h> |