~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to mpeglib_artsplug/cddaPlayObject_impl.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  class for mp3-mpeglib decoder
 
3
  Copyright (C) 2000  Martin Vogt
 
4
 
 
5
  This program is free software; you can redistribute it and/or modify
 
6
  it under the terms of the GNU Library General Public License as published by
 
7
  the Free Software Foundation.
 
8
 
 
9
  For more information look at the file COPYRIGHT in this package
 
10
 
 
11
 */
 
12
 
 
13
 
 
14
#ifndef __CDDAPLAYOBJECT_IMPL_H
 
15
#define __CDDAPLAYOBJECT_IMPL_H
 
16
 
 
17
 
 
18
#include "decoderBaseObject_impl.h"
 
19
#include "../mpeglib/lib/decoder/cddaPlugin.h"
 
20
 
 
21
 
 
22
class CDDAPlayObject_impl: 
 
23
 virtual public DecoderBaseObject_impl,
 
24
 virtual public CDDAPlayObject_skel {
 
25
 
 
26
 
 
27
 
 
28
public:
 
29
 
 
30
  CDDAPlayObject_impl();
 
31
  virtual ~CDDAPlayObject_impl();
 
32
 
 
33
 
 
34
  DecoderPlugin* createPlugin();
 
35
 
 
36
  InputStream* createInputStream(const char* url);
 
37
 
 
38
  void calculateBlock(unsigned long samples);
 
39
 
 
40
};
 
41
 
 
42
 
 
43
#endif