/[svn]/linuxsampler/trunk/src/network/lscpsymbols.h
ViewVC logotype

Annotation of /linuxsampler/trunk/src/network/lscpsymbols.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 123 - (hide annotations) (download) (as text)
Mon Jun 14 19:33:16 2004 UTC (19 years, 11 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 3606 byte(s)
* src/common: added template class 'optional<>' which can be used e.g. as
  return type whenever a value might be returned, but don't has to; this
  template class pretty much acts like a pointer of the given type, but is
  much more safer than a simple pointer
* src/audiodriver: added static class AudioDeviceFactory to create audio
  devices at runtime by using a string and to obtain driver informations
  of drivers at runtime, driver classes should simply use the macro
  REGISTER_AUDIO_OUTPUT_DRIVER(DriverName,DriverClass) in their cpp file
  to register the driver to LinuxSampler (no changes needed anymore in the
  LS code to add a new audio output driver)
* src/drivers: added classes to dynamically manage driver parameters; there
  are two different kinds of parameters: parameters which are need to
  create a new device (DeviceCreationParameterX) used to e.g. create an
  audio output device or a MIDI input device and parameters which are only
  available at runtime, means when a device is already created
  (DeviceRuntimeParameterX) which will be e.g. used as audio channel
  parameters and MIDI port parameters
* src/linuxsampler.cpp: all registered audio output drivers will be shown
  on the console on startup
* src/network: implemented configuration of audio output devices via LSCP

1 schoenebeck 35 /* A Bison parser, made by GNU Bison 1.875a. */
2    
3     /* Skeleton parser for Yacc-like parsing with Bison,
4     Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
5    
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2, or (at your option)
9     any later version.
10    
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     GNU General Public License for more details.
15    
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place - Suite 330,
19     Boston, MA 02111-1307, USA. */
20    
21     /* As a special exception, when this file is copied by Bison into a
22     Bison output file, you may use that output file without restriction.
23     This special exception was added by the Free Software Foundation
24     in version 1.24 of Bison. */
25    
26     /* Tokens. */
27     #ifndef YYTOKENTYPE
28     # define YYTOKENTYPE
29     /* Put the tokens into the symbol table, so that GDB and other debuggers
30     know about them. */
31     enum yytokentype {
32     CHAR = 258,
33     DOTNUM = 259,
34     NUMBER = 260,
35     SP = 261,
36     LF = 262,
37     CR = 263,
38 schoenebeck 111 HASH = 264,
39 schoenebeck 123 EQ = 265,
40     ADD = 266,
41     GET = 267,
42     CREATE = 268,
43     DESTROY = 269,
44     LIST = 270,
45     LOAD = 271,
46     REMOVE = 272,
47     SET = 273,
48     SUBSCRIBE = 274,
49     UNSUBSCRIBE = 275,
50     RESET = 276,
51     QUIT = 277,
52     CHANNEL = 278,
53     NOTIFICATION = 279,
54     AVAILABLE_ENGINES = 280,
55     AVAILABLE_AUDIO_OUTPUT_DRIVERS = 281,
56     CHANNELS = 282,
57     INFO = 283,
58     BUFFER_FILL = 284,
59     STREAM_COUNT = 285,
60     VOICE_COUNT = 286,
61     INSTRUMENT = 287,
62     ENGINE = 288,
63     AUDIO_OUTPUT_CHANNEL = 289,
64     AUDIO_OUTPUT_CHANNEL_PARAMETER = 290,
65     AUDIO_OUTPUT_DEVICE = 291,
66     AUDIO_OUTPUT_DEVICES = 292,
67     AUDIO_OUTPUT_DEVICE_PARAMETER = 293,
68     AUDIO_OUTPUT_DRIVER = 294,
69     AUDIO_OUTPUT_DRIVER_PARAMETER = 295,
70     MIDI_INPUT_PORT = 296,
71     MIDI_INPUT_CHANNEL = 297,
72     MIDI_INPUT_TYPE = 298,
73     VOLUME = 299,
74     BYTES = 300,
75     PERCENTAGE = 301
76 schoenebeck 35 };
77     #endif
78     #define CHAR 258
79     #define DOTNUM 259
80     #define NUMBER 260
81     #define SP 261
82     #define LF 262
83     #define CR 263
84 schoenebeck 111 #define HASH 264
85 schoenebeck 123 #define EQ 265
86     #define ADD 266
87     #define GET 267
88     #define CREATE 268
89     #define DESTROY 269
90     #define LIST 270
91     #define LOAD 271
92     #define REMOVE 272
93     #define SET 273
94     #define SUBSCRIBE 274
95     #define UNSUBSCRIBE 275
96     #define RESET 276
97     #define QUIT 277
98     #define CHANNEL 278
99     #define NOTIFICATION 279
100     #define AVAILABLE_ENGINES 280
101     #define AVAILABLE_AUDIO_OUTPUT_DRIVERS 281
102     #define CHANNELS 282
103     #define INFO 283
104     #define BUFFER_FILL 284
105     #define STREAM_COUNT 285
106     #define VOICE_COUNT 286
107     #define INSTRUMENT 287
108     #define ENGINE 288
109     #define AUDIO_OUTPUT_CHANNEL 289
110     #define AUDIO_OUTPUT_CHANNEL_PARAMETER 290
111     #define AUDIO_OUTPUT_DEVICE 291
112     #define AUDIO_OUTPUT_DEVICES 292
113     #define AUDIO_OUTPUT_DEVICE_PARAMETER 293
114     #define AUDIO_OUTPUT_DRIVER 294
115     #define AUDIO_OUTPUT_DRIVER_PARAMETER 295
116     #define MIDI_INPUT_PORT 296
117     #define MIDI_INPUT_CHANNEL 297
118     #define MIDI_INPUT_TYPE 298
119     #define VOLUME 299
120     #define BYTES 300
121     #define PERCENTAGE 301
122 schoenebeck 35
123    
124    
125    
126     #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
127     typedef int YYSTYPE;
128     # define yystype YYSTYPE /* obsolescent; will be withdrawn */
129     # define YYSTYPE_IS_DECLARED 1
130     # define YYSTYPE_IS_TRIVIAL 1
131     #endif
132    
133    
134    
135    
136    

  ViewVC Help
Powered by ViewVC