AAX SDK 2.8.0
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IMIDINode.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 * Copyright 2014-2017, 2023-2024 Avid Technology, Inc.
4 * All rights reserved.
5 *
6 * This file is part of the Avid AAX SDK.
7 *
8 * The AAX SDK is subject to commercial or open-source licensing.
9 *
10 * By using the AAX SDK, you agree to the terms of both the Avid AAX SDK License
11 * Agreement and Avid Privacy Policy.
12 *
13 * AAX SDK License: https://developer.avid.com/aax
14 * Privacy Policy: https://www.avid.com/legal/privacy-policy-statement
15 *
16 * Or: You may also use this code under the terms of the GPL v3 (see
17 * www.gnu.org/licenses).
18 *
19 * THE AAX SDK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
20 * EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
21 * DISCLAIMED.
22 *
23 */
24
32/*================================================================================================*/
34#pragma once
35#ifndef AAX_IMIDINODE_H
36#define AAX_IMIDINODE_H
38
39#include "AAX.h"
40#include "AAX_ITransport.h"
41
50{
51public:
52 virtual ~AAX_IMIDINode() {}
53
59
76
88};
89
90
92#endif // AAX_IMIDINODE_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:347
The interface for query ProTools transport information.
Packet structure for MIDI data.
Definition: AAX.h:649
MIDI stream data structure used by AAX_IMIDINode.
Definition: AAX.h:674
Interface for accessing information in a MIDI node.
Definition: AAX_IMIDINode.h:50
virtual AAX_ITransport * GetTransport()=0
Returns a transport object.
virtual AAX_CMidiStream * GetNodeBuffer()=0
Returns a MIDI stream data structure.
virtual AAX_Result PostMIDIPacket(AAX_CMidiPacket *packet)=0
Posts an AAX_CMidiPacket to an output MIDI node.
virtual ~AAX_IMIDINode()
Definition: AAX_IMIDINode.h:52
Interface to information about the host's transport state.
Definition: AAX_ITransport.h:66