aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Output/out_wave/cnv_pcmwaveout.h
blob: 6452641b08c4f0bce0f33ff15ceb8d610da61fc2 (plain) (blame)
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
35
36
37
#ifndef _CNV_DS2_H
#define _CNV_DS2_H

#include "../studio/wac.h"
#include "../common/rootcomp.h"
#include "../attribs/cfgitemi.h"
#include "../attribs/attrint.h"
#include "../attribs/attrbool.h"
#include "../attribs/attrstr.h"


#include "../studio/services/svc_mediaconverter.h"
#include "../studio/services/servicei.h"
#include "../studio/corecb.h"
#include "../studio/wac.h"


#define WACNAME WACcnv_waveout

class WACNAME : public WAComponentClient {
public:
  WACNAME();
  virtual ~WACNAME();

  virtual const char *getName() { return "WaveOut Output"; };
  virtual GUID getGUID();

  virtual void onDestroy();
  virtual void onCreate();
  
  virtual int getDisplayComponent() { return FALSE; };

  virtual CfgItem *getCfgInterface(int n) { return this; }
};


#endif