diff options
author | David Robillard <d@drobilla.net> | 2008-08-17 03:20:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-17 03:20:42 +0000 |
commit | 3019b09099371b3fe568b7dcc3bb92203d800b1f (patch) | |
tree | eed4a0cb4be627764beb262756085bd51d86add5 /src/libs/module | |
parent | d6823fa9b29bcff74ca180e6d389d8a21cf88d1f (diff) | |
download | ingen-3019b09099371b3fe568b7dcc3bb92203d800b1f.tar.gz ingen-3019b09099371b3fe568b7dcc3bb92203d800b1f.tar.bz2 ingen-3019b09099371b3fe568b7dcc3bb92203d800b1f.zip |
Rename 'Loader' 'Parser'.
git-svn-id: http://svn.drobilla.net/lad/ingen@1411 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/module')
-rw-r--r-- | src/libs/module/World.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/module/World.hpp b/src/libs/module/World.hpp index a1a0d5c7..dbbac2bd 100644 --- a/src/libs/module/World.hpp +++ b/src/libs/module/World.hpp @@ -34,9 +34,9 @@ namespace Redland { class World; } namespace Ingen { class Engine; -namespace Serialisation { class Serialiser; class Loader; } +namespace Serialisation { class Serialiser; class Parser; } using Serialisation::Serialiser; -using Serialisation::Loader; +using Serialisation::Parser; namespace Shared { class EngineInterface; @@ -64,7 +64,7 @@ struct World { SharedPtr<EngineInterface> engine; SharedPtr<Engine> local_engine; SharedPtr<Serialiser> serialiser; - SharedPtr<Loader> loader; + SharedPtr<Parser> parser; SharedPtr<Store> store; SharedPtr<Glib::Module> serialisation_module; |