~ubuntu-branches/ubuntu/intrepid/banshee/intrepid

« back to all changes in this revision

Viewing changes to ext/taglib-sharp/TagLib/Id3v2/FrameFactory.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2008-01-09 08:06:38 UTC
  • mfrom: (1.3.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20080109080638-x5x0h3bd92nht0n9
Tags: 0.13.2+dfsg-2
* debian/control:
  + Build depend on mono-mcs to fix FTBFS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
    copyright            : (C) 2005 by Brian Nickel
3
 
    email                : brian.nickel@gmail.com
4
 
    based on             : id3v2framefactory.cpp from TagLib
5
 
 ***************************************************************************/
6
 
 
7
 
/***************************************************************************
8
 
 *   This library is free software; you can redistribute it and/or modify  *
9
 
 *   it  under the terms of the GNU Lesser General Public License version  *
10
 
 *   2.1 as published by the Free Software Foundation.                     *
11
 
 *                                                                         *
12
 
 *   This library is distributed in the hope that it will be useful, but   *
13
 
 *   WITHOUT ANY WARRANTY; without even the implied warranty of            *
14
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
15
 
 *   Lesser General Public License for more details.                       *
16
 
 *                                                                         *
17
 
 *   You should have received a copy of the GNU Lesser General Public      *
18
 
 *   License along with this library; if not, write to the Free Software   *
19
 
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  *
20
 
 *   USA                                                                   *
21
 
 ***************************************************************************/
 
1
//
 
2
// FrameFactory.cs:
 
3
//
 
4
// Author:
 
5
//   Brian Nickel (brian.nickel@gmail.com)
 
6
//
 
7
// Original Source:
 
8
//   id3v2framefactory.cpp from TagLib
 
9
//
 
10
// Copyright (C) 2005-2007 Brian Nickel
 
11
// Copyright (C) 2002,2003 Scott Wheeler (Original Implementation)
 
12
//
 
13
// This library is free software; you can redistribute it and/or modify
 
14
// it  under the terms of the GNU Lesser General Public License version
 
15
// 2.1 as published by the Free Software Foundation.
 
16
//
 
17
// This library is distributed in the hope that it will be useful, but
 
18
// WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
20
// Lesser General Public License for more details.
 
21
//
 
22
// You should have received a copy of the GNU Lesser General Public
 
23
// License along with this library; if not, write to the Free Software
 
24
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 
25
// USA
 
26
//
22
27
 
23
28
using System.Collections.Generic;
24
29