/[svn]/linuxsampler/trunk/src/engines/sfz/InstrumentScriptVM.h
ViewVC logotype

Annotation of /linuxsampler/trunk/src/engines/sfz/InstrumentScriptVM.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3557 - (hide annotations) (download) (as text)
Sun Aug 18 00:06:04 2019 UTC (4 years, 8 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 1278 byte(s)
* NKSP: Introducing 64 bit support for NKSP integer scripts
  variables (declare $foo).
* Require C++11 compiler support.
* Autoconf: Added m4/ax_cxx_compile_stdcxx.m4 macro which is used
  for checking in configure for C++11 support (as mandatory
  requirement) and automatically adds compiler argument if required
  (e.g. -std=C++11).
* Bumped version (2.1.1.svn3).

1 schoenebeck 3082 /*
2 schoenebeck 3557 * Copyright (c) 2014 - 2019 Christian Schoenebeck
3 schoenebeck 3082 *
4     * http://www.linuxsampler.org
5     *
6     * This file is part of LinuxSampler and released under the same terms.
7     * See README file for details.
8     */
9    
10     #ifndef LS_SFZ_INSTRUMENT_SCRIPT_VM_H
11     #define LS_SFZ_INSTRUMENT_SCRIPT_VM_H
12    
13     #include "../common/InstrumentScriptVM.h"
14     //#include "InstrumentScriptVMFunctions.h"
15    
16     namespace LinuxSampler { namespace sfz {
17    
18     /** @brief Real-time instrument script virtual machine (SFZ format).
19     *
20     * Extends the common sampler format independent InstrumentScriptVM with
21     * SFZ format specific built-in script variables and functions.
22     *
23     * Note that this class is currently re-entrant safe, but @b not thread
24     * safe! See also comments of base class ScriptVM regarding this issue.
25     */
26     class InstrumentScriptVM : public LinuxSampler::InstrumentScriptVM {
27     public:
28     InstrumentScriptVM();
29     //VMFunction* functionByName(const String& name) OVERRIDE;
30 schoenebeck 3557 //std::map<String,VMIntPtr*> builtInIntVariables() OVERRIDE;
31 schoenebeck 3082 //std::map<String,VMInt8Array*> builtInIntArrayVariables() OVERRIDE;
32 schoenebeck 3557 //std::map<String,vmint> builtInConstIntVariables() OVERRIDE;
33 schoenebeck 3082 };
34    
35     }} // namespace LinuxSampler::sfz
36    
37     #endif // LS_SFZ_INSTRUMENT_SCRIPT_VM_H

  ViewVC Help
Powered by ViewVC