diff options
author | David Robillard <d@drobilla.net> | 2007-02-05 06:23:05 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-02-05 06:23:05 +0000 |
commit | 4c8aad127d9504c7d355975180f877f5baa9f744 (patch) | |
tree | bdb70b9a849a290f32c9bbb45947da4b796dcd97 /src/JackActions.hpp | |
parent | 60647fedf17cdebfcf45c76d8fa9cee120006921 (diff) | |
download | machina-4c8aad127d9504c7d355975180f877f5baa9f744.tar.gz machina-4c8aad127d9504c7d355975180f877f5baa9f744.tar.bz2 machina-4c8aad127d9504c7d355975180f877f5baa9f744.zip |
It's aliiiiivee!
git-svn-id: http://svn.drobilla.net/lad/machina@278 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/JackActions.hpp')
-rw-r--r-- | src/JackActions.hpp | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/JackActions.hpp b/src/JackActions.hpp new file mode 100644 index 0000000..e55d863 --- /dev/null +++ b/src/JackActions.hpp @@ -0,0 +1,56 @@ +/* This file is part of Machina. Copyright (C) 2007 Dave Robillard. + * + * Machina 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. + * + * Machina 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 MACHINA_JACKACTIONS_HPP +#define MACHINA_JACKACTIONS_HPP + +#include <raul/WeakPtr.h> +#include "types.hpp" +#include "Action.hpp" + +namespace Machina { + +class Node; +class JackDriver; + + +class JackNoteOnAction : public Action { +public: + JackNoteOnAction(WeakPtr<JackDriver> driver, unsigned char note_num); + + void execute(Timestamp time); + +private: + WeakPtr<JackDriver> _driver; + unsigned char _note_num; +}; + + +class JackNoteOffAction : public Action { +public: + JackNoteOffAction(WeakPtr<JackDriver> driver, unsigned char note_num); + + void execute(Timestamp time); + +private: + WeakPtr<JackDriver> _driver; + unsigned char _note_num; +}; + + +} // namespace Machina + +#endif // MACHINA_JACKACTIONS_HPP |