| 
							- /*
 -  Copyright (C) 2001 Paul Davis
 -  
 -  This program is free software; you can redistribute it and/or modify
 -  it under the terms of the GNU Lesser General Public License as published by
 -  the Free Software Foundation; either version 2.1 of the License, or
 -  (at your option) any later version.
 -  
 -  This program is distributed in the hope that it will be useful,
 -  but WITHOUT ANY WARRANTY; without even the implied warranty of
 -  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 -  GNU Lesser General Public License for more details.
 -  
 -  You should have received a copy of the GNU Lesser General Public License
 -  along with this program; if not, write to the Free Software 
 -  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 - */
 - 
 - #ifndef __internal_metro__
 - #define __internal_metro__
 - 
 - #ifdef __cplusplus
 - extern "C"
 - {
 - #endif
 - 
 - #include <stdlib.h>
 - #include <stdio.h>
 - #include <errno.h>
 - #include <unistd.h>
 - #include <math.h>
 - #include <getopt.h>
 - #include <string.h>
 - 
 - #include "jack.h"
 - #include "transport.h"
 - 
 - 
 -     typedef jack_default_audio_sample_t sample_t;
 - 
 -     /*!
 -     \brief A class to test internal clients
 -     */
 - 
 -     struct InternalMetro {
 - 
 -         jack_client_t *client;
 -         jack_port_t *input_port;
 -         jack_port_t *output_port;
 - 
 -         unsigned long sr;
 -         int freq;
 -         int bpm;
 -         jack_nframes_t tone_length, wave_length;
 -         sample_t *wave;
 -         long offset ;
 - 
 -         InternalMetro(int freq, double max_amp, int dur_arg, int bpm, char* client_name);
 -         virtual ~InternalMetro();
 - 
 -     };
 - 
 - #ifdef __cplusplus
 - }
 - #endif
 - 
 - #endif
 
 
  |