summaryrefslogtreecommitdiffstats
path: root/src/shared
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-10 04:54:26 +0000
committerDavid Robillard <d@drobilla.net>2011-01-10 04:54:26 +0000
commitd6a3c886895f1de314569c39a00005c2c2272c13 (patch)
tree61499ce1aa7d60c3f6593e13f6e037efefc973f3 /src/shared
parent4109493217f2544a0dcbcb3ef6d4539651594347 (diff)
downloadingen-d6a3c886895f1de314569c39a00005c2c2272c13.tar.gz
ingen-d6a3c886895f1de314569c39a00005c2c2272c13.tar.bz2
ingen-d6a3c886895f1de314569c39a00005c2c2272c13.zip
Remove shared/engine dependency on sigc++.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2814 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/HTTPSender.cpp1
-rw-r--r--src/shared/ResourceImpl.cpp1
-rw-r--r--src/shared/ResourceImpl.hpp3
3 files changed, 1 insertions, 4 deletions
diff --git a/src/shared/HTTPSender.cpp b/src/shared/HTTPSender.cpp
index fe7dfea4..4a3db5d3 100644
--- a/src/shared/HTTPSender.cpp
+++ b/src/shared/HTTPSender.cpp
@@ -20,6 +20,7 @@
#include <cstring>
#include <unistd.h>
#include <stdarg.h>
+#include <stddef.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
diff --git a/src/shared/ResourceImpl.cpp b/src/shared/ResourceImpl.cpp
index 1801eb9f..dc9bfbae 100644
--- a/src/shared/ResourceImpl.cpp
+++ b/src/shared/ResourceImpl.cpp
@@ -52,7 +52,6 @@ ResourceImpl::add_property(const Raul::URI& uri, const Raul::Atom& value)
return;
_properties.insert(make_pair(uri, value));
- signal_property.emit(uri, value);
}
diff --git a/src/shared/ResourceImpl.hpp b/src/shared/ResourceImpl.hpp
index 5173e947..6bb88a76 100644
--- a/src/shared/ResourceImpl.hpp
+++ b/src/shared/ResourceImpl.hpp
@@ -19,7 +19,6 @@
#define INGEN_SHARED_RESOURCEIMPL_HPP
#include <map>
-#include <sigc++/sigc++.h>
#include "raul/URI.hpp"
#include "raul/SharedPtr.hpp"
#include "interface/Resource.hpp"
@@ -55,8 +54,6 @@ public:
void dump(std::ostream& os) const;
- sigc::signal<void, const Raul::URI&, const Raul::Atom&> signal_property;
-
/** Get the ingen type from a set of Properties.
* If some coherent ingen type is found, true is returned and the appropriate
* output parameter set to true. Otherwise false is returned.