summaryrefslogtreecommitdiffstats
path: root/src/PortNames.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-29 18:24:03 +0100
committerDavid Robillard <d@drobilla.net>2020-11-29 18:24:03 +0100
commit178d1cbe1dfc9e7b66c36cbb75590e1cee419174 (patch)
tree4e33ecbff68fc65d9771c2e654411ad9f1aecd86 /src/PortNames.hpp
parent4265b9a78dac2b7f26f505c7b90b0d88494e93c2 (diff)
downloadpatchage-178d1cbe1dfc9e7b66c36cbb75590e1cee419174.tar.gz
patchage-178d1cbe1dfc9e7b66c36cbb75590e1cee419174.tar.bz2
patchage-178d1cbe1dfc9e7b66c36cbb75590e1cee419174.zip
Put everything in a namespace
Diffstat (limited to 'src/PortNames.hpp')
-rw-r--r--src/PortNames.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/PortNames.hpp b/src/PortNames.hpp
index b8cb187..9d8baf1 100644
--- a/src/PortNames.hpp
+++ b/src/PortNames.hpp
@@ -22,6 +22,8 @@
#include <cassert>
#include <string>
+namespace patchage {
+
/// Utility class that splits a Jack port ID into client and client names
class PortNames
{
@@ -50,4 +52,6 @@ private:
std::string _port_name;
};
+} // namespace patchage
+
#endif // PATCHAGE_PORTNAMES_HPP