diff options
author | David Robillard <d@drobilla.net> | 2012-05-11 04:55:56 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-11 04:55:56 +0000 |
commit | e64eabe64ee966364bc5f6704c5227687ea309d8 (patch) | |
tree | a62c6044a1b4cc4f070958dfaf29f16231a7c2d8 /ingen/shared/Forge.hpp | |
parent | 908a001ea84dcf3a1204746d110068454c637119 (diff) | |
download | ingen-e64eabe64ee966364bc5f6704c5227687ea309d8.tar.gz ingen-e64eabe64ee966364bc5f6704c5227687ea309d8.tar.bz2 ingen-e64eabe64ee966364bc5f6704c5227687ea309d8.zip |
Move Forge to the appropriate namespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4350 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/shared/Forge.hpp')
-rw-r--r-- | ingen/shared/Forge.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ingen/shared/Forge.hpp b/ingen/shared/Forge.hpp index 16629683..f9d225cd 100644 --- a/ingen/shared/Forge.hpp +++ b/ingen/shared/Forge.hpp @@ -19,12 +19,12 @@ #include <string> -#include "ingen/shared/Forge.hpp" #include "raul/Atom.hpp" namespace Ingen { +namespace Shared { -namespace Shared { class URIMap; } +class URIMap; class Forge : public Raul::Forge { public: @@ -33,6 +33,7 @@ public: std::string str(const Raul::Atom& atom); }; +} // namespace Shared } // namespace Ingen #endif // INGEN_SHARED_FORGE_HPP |