summaryrefslogtreecommitdiffstats
path: root/src/client/ObjectModel.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-11-24 17:48:39 -0500
committerDavid Robillard <d@drobilla.net>2024-11-24 17:48:39 -0500
commit7099e0d3b55f5ebea9e4cb74490b396a4bb29d1e (patch)
treec1ec4fe4ce9501696b1d55c0b9916f3bd2fd7e68 /src/client/ObjectModel.cpp
parentf192b56222efcec60cf4884395ebd0f0ed9f02f2 (diff)
downloadingen-7099e0d3b55f5ebea9e4cb74490b396a4bb29d1e.tar.gz
ingen-7099e0d3b55f5ebea9e4cb74490b396a4bb29d1e.tar.bz2
ingen-7099e0d3b55f5ebea9e4cb74490b396a4bb29d1e.zip
Use angle brackets for library includes
Diffstat (limited to 'src/client/ObjectModel.cpp')
-rw-r--r--src/client/ObjectModel.cpp25
1 files changed, 15 insertions, 10 deletions
diff --git a/src/client/ObjectModel.cpp b/src/client/ObjectModel.cpp
index 0c3bf517..d233dd1a 100644
--- a/src/client/ObjectModel.cpp
+++ b/src/client/ObjectModel.cpp
@@ -14,16 +14,17 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "ingen/client/ObjectModel.hpp"
-
-#include "ingen/Atom.hpp"
-#include "ingen/Node.hpp"
-#include "ingen/Properties.hpp"
-#include "ingen/Resource.hpp"
-#include "ingen/URIs.hpp"
-#include "ingen/paths.hpp"
-#include "raul/Path.hpp"
-#include "raul/Symbol.hpp"
+#include <ingen/client/ObjectModel.hpp>
+
+#include <ingen/Atom.hpp>
+#include <ingen/Node.hpp>
+#include <ingen/Properties.hpp>
+#include <ingen/Resource.hpp>
+#include <ingen/URIs.hpp>
+#include <ingen/paths.hpp>
+#include <raul/Path.hpp>
+#include <raul/Symbol.hpp>
+#include <sigc++/signal.h>
#include <cassert>
#include <cstdint>
@@ -31,6 +32,10 @@
#include <string>
#include <utility>
+namespace ingen {
+class URI;
+} // namespace ingen
+
namespace ingen::client {
ObjectModel::ObjectModel(URIs& uris, const raul::Path& path)