~ubuntu-branches/debian/sid/libmusicbrainz5/sid

« back to all changes in this revision

Viewing changes to include/musicbrainz5/FreeDBDiscList.h

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2012-06-01 19:17:52 UTC
  • Revision ID: package-import@ubuntu.com-20120601191752-kqnn25aopdlc4drf
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* --------------------------------------------------------------------------
 
2
 
 
3
   libmusicbrainz5 - Client library to access MusicBrainz
 
4
 
 
5
   Copyright (C) 2012 Andrew Hawkins
 
6
 
 
7
   This file is part of libmusicbrainz5.
 
8
 
 
9
   This library is free software; you can redistribute it and/or
 
10
   modify it under the terms of v2 of the GNU Lesser General Public
 
11
   License as published by the Free Software Foundation.
 
12
 
 
13
   libmusicbrainz5 is distributed in the hope that it will be useful,
 
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
   Lesser General Public License for more details.
 
17
 
 
18
   You should have received a copy of the GNU General Public License
 
19
   along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
20
 
 
21
     $Id$
 
22
 
 
23
----------------------------------------------------------------------------*/
 
24
 
 
25
#ifndef _MUSICBRAINZ5_FREEDBDISC_LIST_H
 
26
#define _MUSICBRAINZ5_FREEDBDISC_LIST_H
 
27
 
 
28
#include "musicbrainz5/ListImpl.h"
 
29
 
 
30
namespace MusicBrainz5
 
31
{
 
32
        class CFreeDBDisc;
 
33
 
 
34
        typedef CListImpl<CFreeDBDisc> CFreeDBDiscList;
 
35
}
 
36
 
 
37
#endif