~ubuntu-branches/ubuntu/feisty/muse/feisty

« back to all changes in this revision

Viewing changes to synti/stklib/SndWvOut.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-w8yplzr81a759xa3
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***********************************************/
 
2
/*
 
3
  NeXT (.snd) and Sun (.au) Soundfile Output Class
 
4
  by Perry R. Cook, 1996
 
5
  Revised by Gary P. Scavone, 1999-2000
 
6
 
 
7
  This one opens a NeXT .snd file, and
 
8
  even knows how to byte-swap!
 
9
*/
 
10
/***********************************************/
 
11
 
 
12
#if !defined(__SndWvOut_h)
 
13
#define __SndWvOut_h
 
14
 
 
15
#include "Object.h"
 
16
#include "WvOut.h"
 
17
 
 
18
class SndWvOut : public WvOut
 
19
{
 
20
 protected:
 
21
  FILE *fd;
 
22
 public:
 
23
  SndWvOut(char *fileName, int chans = 1);
 
24
  ~SndWvOut();
 
25
  void tick(MY_FLOAT sample);
 
26
  void mtick(MY_MULTI samples);
 
27
};
 
28
 
 
29
#endif // defined(__SndWvOut_h)