~ubuntu-branches/ubuntu/intrepid/kid3/intrepid

« back to all changes in this revision

Viewing changes to kid3/taglibext/trueaudio/taglib_trueaudiofiletyperesolver.h

  • Committer: Bazaar Package Importer
  • Author(s): Michele Angrisano
  • Date: 2008-01-09 23:20:54 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080109232054-gtcjxz4ahdnzbt01
Tags: 0.10-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - debian/rules:
    + Use dh_icons instead dh_iconcache.
  - debian/control:
    + Update maintainer field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
    copyright            : (C) 2006 by Martin Aumueller
 
3
    email                : aumuell@reserv.at
 
4
 ***************************************************************************/
 
5
 
 
6
/***************************************************************************
 
7
 *   This library is free software; you can redistribute it and/or modify  *
 
8
 *   it  under the terms of the GNU Lesser General Public License version  *
 
9
 *   2.1 as published by the Free Software Foundation.                     *
 
10
 *                                                                         *
 
11
 *   This library is distributed in the hope that it will be useful, but   *
 
12
 *   WITHOUT ANY WARRANTY; without even the implied warranty of            *
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
 
14
 *   Lesser General Public License for more details.                       *
 
15
 *                                                                         *
 
16
 *   You should have received a copy of the GNU Lesser General Public      *
 
17
 *   License along with this library; if not, write to the Free Software   *
 
18
 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,            *
 
19
 *   MA  02110-1301  USA                                                   *
 
20
 ***************************************************************************/
 
21
 
 
22
#ifndef TAGLIB_TRUEAUDIOFILETYPERESOLVER_H
 
23
#define TAGLIB_TRUEAUDIOFILETYPERESOLVER_H
 
24
 
 
25
#include <tfile.h>
 
26
#include <fileref.h>
 
27
 
 
28
 
 
29
class TTAFileTypeResolver : public TagLib::FileRef::FileTypeResolver
 
30
{
 
31
    TagLib::File *createFile(const char *fileName,
 
32
            bool readAudioProperties,
 
33
            TagLib::AudioProperties::ReadStyle audioPropertiesStyle) const;
 
34
    ~TTAFileTypeResolver() {}
 
35
};
 
36
 
 
37
#endif