summaryrefslogtreecommitdiffstats
path: root/src/shared/LV2Object.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-05-04 04:37:32 +0000
committerDavid Robillard <d@drobilla.net>2010-05-04 04:37:32 +0000
commitbaddfc8f54b34585b19323516d2e48d4d8f33759 (patch)
treef383cb61f58cbf75d2f360abb9eab6a35ef105f2 /src/shared/LV2Object.hpp
parenta377fe171dd248f9418634f5f23d10a9440fd920 (diff)
downloadingen-baddfc8f54b34585b19323516d2e48d4d8f33759.tar.gz
ingen-baddfc8f54b34585b19323516d2e48d4d8f33759.tar.bz2
ingen-baddfc8f54b34585b19323516d2e48d4d8f33759.zip
LV2Object => LV2Atom.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2563 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared/LV2Object.hpp')
-rw-r--r--src/shared/LV2Object.hpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/shared/LV2Object.hpp b/src/shared/LV2Object.hpp
deleted file mode 100644
index 5b50d726..00000000
--- a/src/shared/LV2Object.hpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/* This file is part of Ingen.
- * Copyright (C) 2009 Dave Robillard <http://drobilla.net>
- *
- * Ingen is free software; you can redistribute it and/or modify it under the
- * terms of the GNU General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option) any later
- * version.
- *
- * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef INGEN_SHARED_LV2OBJECT_HPP
-#define INGEN_SHARED_LV2OBJECT_HPP
-
-namespace Raul { class Atom; }
-typedef struct _LV2_Atom LV2_Atom;
-
-namespace Ingen {
-namespace Shared {
-
-class World;
-class LV2URIMap;
-
-namespace LV2Object {
-
- bool to_atom(const Shared::LV2URIMap& uris, const LV2_Atom* object, Raul::Atom& atom);
- bool from_atom(const Shared::LV2URIMap& uris, const Raul::Atom& atom, LV2_Atom* object);
-
-} // namespace LV2Object
-
-} // namespace Shared
-} // namespace Ingen
-
-#endif // INGEN_SHARED_LV2OBJECT_HPP