Pd++  0.01
A pure C++ implementation of Pure Data objects
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
WhiteNoise.h
1 /*
2  WhiteNoise.cpp
3  Pd++
4 
5  Created by Esler,Robert Wadhams on 10/14/14.
6  Copyright (c) 2014 Robert Esler. All rights reserved.
7  */
8 
9 #ifndef __Pd____WhiteNoise__
10 #define __Pd____WhiteNoise__
11 
12 #include <iostream>
13 #include <time.h>
14 #include <stdlib.h>
15 #include "PdMaster.h"
16 
17 namespace rwe {
18 
19 /*! \brief A white noise generator.*/
20 
21 
22 class WhiteNoise : public PdMaster {
23 
24 private:
25 
26 
27 public:
28  WhiteNoise();
29  ~WhiteNoise();
30  double perform();
31 
32 };
33 
34 
35 } // rwe namespace
36 
37 #endif /* defined(__Pd____WhiteNoise__) */
A super class inherited by all Pd++ objects.
Definition: PdMaster.h:62
Personal namespace. Use intials for your own classes.
Definition: CosineWave.cpp:18
A white noise generator.
Definition: WhiteNoise.h:22