Update NTK.
[nondaw.git] / timeline / src / Engine / Audio_File_Dummy.H
blob331e3f9746c28da328bbfae71bff7628a6a8324f
2 /*******************************************************************************/
3 /* Copyright (C) 2008 Jonathan Moore Liles                                     */
4 /*                                                                             */
5 /* This program is free software; you can redistribute it and/or modify it     */
6 /* under the terms of the GNU General Public License as published by the       */
7 /* Free Software Foundation; either version 2 of the License, or (at your      */
8 /* option) any later version.                                                  */
9 /*                                                                             */
10 /* This program is distributed in the hope that it will be useful, but WITHOUT */
11 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       */
12 /* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   */
13 /* more details.                                                               */
14 /*                                                                             */
15 /* You should have received a copy of the GNU General Public License along     */
16 /* with This program; see the file COPYING.  If not,write to the Free Software */
17 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18 /*******************************************************************************/
20 #pragma once
22 #include "Audio_File.H"
24 class Audio_File_Dummy : public Audio_File
26     Audio_File_Dummy ( )
27         {
28         }
30 public:
32     static Audio_File_Dummy *from_file ( const char *filename );
34     bool dummy ( void ) const { return true; }
36     ~Audio_File_Dummy ( )
37         {
38         }
40     bool open ( void ) { return true; }
41     void close ( void ) { }
42     void seek ( nframes_t ) { }
43     nframes_t read ( sample_t *, int, nframes_t len ) { return 0; }
44     nframes_t read ( sample_t *, int,  nframes_t start, nframes_t end ) { return 0; }
45     nframes_t write ( sample_t *, nframes_t nframes ) { return nframes; }