ftp.nice.ch/pub/next/unix/audio/line2sine.1.0.NI.bs.tar.gz#/line2sine/include/Add.h

This is Add.h in view mode; [Download] [Up]

//
// Programmer:    Craig Stuart Sapp <craig@ccrma.stanford.edu>
// Creation Date: Sat Nov  2 10:25:09 PST 1996
// Last Modified: Wed Apr 23 22:32:31 GMT-0800 1997
// Filename:      .../sig/src/Filter/Add/Add.h
// Syntax:        C++ 
// $Smake:        cc -Wall -g -c %b.cc -I../../../include && rm -f %b.o
//

#ifndef _ADD_H_INCLUDED
#define _ADD_H_INCLUDED

#include "Filter.h"


class Add : public Filter {
   public:
                      Add             (void);
                     ~Add             ();
      void            action          (void);
      void            clear           (void);
      sampleType      output          (int index);
      void            printState      (void);
 
   protected:
      sampleType      outputValue;    // stores the sum of the inputs
};


#endif  _ADD_H_INCLUDED


These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.