blob: da7ab5e5115ca3d4a1e161727014cd163917f4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* WavefileSuperposition.h
*
* Created on: 01.04.2011
* Author: sven
*/
#ifndef WAVEFILESUPERPOSITION_H_
#define WAVEFILESUPERPOSITION_H_
#ifndef SUPERPOSITIONPARAMETERS_H_
#include "SuperpositionParameters.h"
#endif
class WavefileSuperposition {
public:
WavefileSuperposition(SuperpositionParameters&);
virtual ~WavefileSuperposition();
};
#endif /* WAVEFILESUPERPOSITION_H_ */
|