-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoicevox_juce_extra.h
39 lines (27 loc) · 1.41 KB
/
voicevox_juce_extra.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
The block below describes the properties of this module, and is read by
the Projucer to automatically generate project code that uses it.
For details about the syntax and how to create or use a module, see the
JUCE Module Format.md file.
BEGIN_JUCE_MODULE_DECLARATION
ID: voicevox_juce_extra
vendor: COCOTONE
version: 0.0.1
name: JUCE extended classes for integrating with voicevox_juce module.
description: Classes for creating advanced VOICEVOX application with JUCE framework.
website: https://github.com/cocotone/voicevox_juce_extra
license: BSD 3-Clause License
minimumCppStandard: 17
dependencies: juce_core juce_audio_basics juce_audio_utils juce_gui_basics voicevox_juce
END_JUCE_MODULE_DECLARATION
*******************************************************************************/
#pragma once
#define VOICEVOX_JUCE_EXTRA_H_INCLUDED
#include <juce_core/juce_core.h>
#include <juce_audio_basics/juce_audio_basics.h>
#include <juce_audio_utils/juce_audio_utils.h>
#include <juce_gui_basics/juce_gui_basics.h>
#include <voicevox_juce/voicevox_juce.h>
//==============================================================================
#include "Engine/cocotone_VoicevoxEngine.h"
#include "Audio/cocotone_HostSyncAudioSourcePlayer.h"