-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDisplayWaveSource.h
More file actions
executable file
·34 lines (25 loc) · 942 Bytes
/
DisplayWaveSource.h
File metadata and controls
executable file
·34 lines (25 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// DisplayWaveSource.h: interface for the CDisplayWaveSource class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DISPLAYWAVESOURCE_H__7E73580F_14EF_406A_9BF5_289B06C7102F__INCLUDED_)
#define AFX_DISPLAYWAVESOURCE_H__7E73580F_14EF_406A_9BF5_289B06C7102F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "DisplaySource.h"
#include "Wave.h"
#include "common.h" // Added by ClassView
class CDisplayWaveSource : public CDisplaySource
{
public:
virtual DOUBLE Fx(DOUBLE x);
INT AttachSource(CWave* in_pWave);
virtual INT InitSource();
CDisplayWaveSource();
CDisplayWaveSource(CWave* pWave);
virtual ~CDisplayWaveSource();
CWave* m_pWaveSource;
DOUBLE SampleToPercent(SAMPLE in_spSam);
};
typedef CDisplayWaveSource CDSWave;
#endif // !defined(AFX_DISPLAYWAVESOURCE_H__7E73580F_14EF_406A_9BF5_289B06C7102F__INCLUDED_)