summaryrefslogtreecommitdiffstats
path: root/src/common/interface
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-08-01 14:18:13 +0000
committerDavid Robillard <d@drobilla.net>2007-08-01 14:18:13 +0000
commitef623f2f3c934d0f3d17d9d8850d59e220fefc52 (patch)
treef935b9b40ddf67a5a50e462dfa172a96351d0d21 /src/common/interface
parent188e34375827915a9832ddb1db4b94494bbee455 (diff)
downloadingen-ef623f2f3c934d0f3d17d9d8850d59e220fefc52.tar.gz
ingen-ef623f2f3c934d0f3d17d9d8850d59e220fefc52.tar.bz2
ingen-ef623f2f3c934d0f3d17d9d8850d59e220fefc52.zip
Fix autohell for last commit.
git-svn-id: http://svn.drobilla.net/lad/ingen@667 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common/interface')
-rw-r--r--src/common/interface/Makefile.am1
-rw-r--r--src/common/interface/README8
2 files changed, 3 insertions, 6 deletions
diff --git a/src/common/interface/Makefile.am b/src/common/interface/Makefile.am
index 7b9f1f53..8460a2fb 100644
--- a/src/common/interface/Makefile.am
+++ b/src/common/interface/Makefile.am
@@ -1,5 +1,4 @@
EXTRA_DIST = \
README \
ClientInterface.hpp \
- Responder.hpp \
EngineInterface.hpp
diff --git a/src/common/interface/README b/src/common/interface/README
index efa19700..f79bdc2a 100644
--- a/src/common/interface/README
+++ b/src/common/interface/README
@@ -1,11 +1,9 @@
-This directory is code that could POSSIBLY be used by both the engine and
-clients.
+This directory contains the core engine/client interfaces, code used on
+both the engine side and client side.
It's very, very important that nothing here gets messed up that violates
client/engine separation. All interfaces use simple messages composed of
-serializable types, and no binary data that could break is shared. It's
-basically a functional version of a human-readable OSC interface, in both
-directions.
+serializable types.
The interface here maps directly on to the OSC interface - except it can
happen in the same process as well, with only (virtual) function call