DJMFix.h
author František Kučera <franta-hg@frantovo.cz>
Fri, 18 Dec 2020 21:35:36 +0100
branchv_0
changeset 1 98274757fcf6
parent 0 4ee5349be21d
child 2 f34476ab597f
permissions -rw-r--r--
more bones
franta-hg@0
     1
/**
franta-hg@0
     2
 * DJM-Fix
franta-hg@0
     3
 * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
franta-hg@0
     4
 *
franta-hg@0
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@0
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@0
     7
 * the Free Software Foundation, version 3 of the License.
franta-hg@0
     8
 *
franta-hg@0
     9
 * This program is distributed in the hope that it will be useful,
franta-hg@0
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@0
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@0
    12
 * GNU General Public License for more details.
franta-hg@0
    13
 *
franta-hg@0
    14
 * You should have received a copy of the GNU General Public License
franta-hg@0
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@0
    16
 */
franta-hg@1
    17
#pragma once
franta-hg@1
    18
franta-hg@1
    19
#include <vector>
franta-hg@1
    20
#include <functional>
franta-hg@1
    21
franta-hg@1
    22
namespace djmfix {
franta-hg@1
    23
franta-hg@1
    24
using MidiMessage = std::vector<uint8_t>;
franta-hg@1
    25
using MidiSender = std::function<void(MidiMessage) >;
franta-hg@1
    26
franta-hg@1
    27
class DJMFix {
franta-hg@1
    28
public:
franta-hg@1
    29
	virtual ~DJMFix() = default;
franta-hg@1
    30
	virtual void receive(MidiMessage midiMessage) = 0;
franta-hg@1
    31
	virtual void start() = 0;
franta-hg@1
    32
	virtual void stop() = 0;
franta-hg@1
    33
};
franta-hg@1
    34
franta-hg@1
    35
DJMFix* create(MidiSender midiSender);
franta-hg@1
    36
franta-hg@1
    37
}