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

« back to all changes in this revision

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