Blame include/musicbrainz5/WorkList.h

Packit f70c98
/* --------------------------------------------------------------------------
Packit f70c98
Packit f70c98
   libmusicbrainz5 - Client library to access MusicBrainz
Packit f70c98
Packit f70c98
   Copyright (C) 2012 Andrew Hawkins
Packit f70c98
Packit f70c98
   This file is part of libmusicbrainz5.
Packit f70c98
Packit f70c98
   This library is free software; you can redistribute it and/or
Packit f70c98
   modify it under the terms of the GNU Lesser General Public
Packit f70c98
   License as published by the Free Software Foundation; either
Packit f70c98
   version 2.1 of the License, or (at your option) any later version.
Packit f70c98
Packit f70c98
   libmusicbrainz5 is distributed in the hope that it will be useful,
Packit f70c98
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit f70c98
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit f70c98
   Lesser General Public License for more details.
Packit f70c98
Packit f70c98
   You should have received a copy of the GNU General Public License
Packit f70c98
   along with this library.  If not, see <http://www.gnu.org/licenses/>.
Packit f70c98
Packit f70c98
     $Id$
Packit f70c98
Packit f70c98
----------------------------------------------------------------------------*/
Packit f70c98
Packit f70c98
#ifndef _MUSICBRAINZ5_WORK_LIST_H
Packit f70c98
#define _MUSICBRAINZ5_WORK_LIST_H
Packit f70c98
Packit f70c98
#include "musicbrainz5/ListImpl.h"
Packit f70c98
Packit f70c98
namespace MusicBrainz5
Packit f70c98
{
Packit f70c98
	class CWork;
Packit f70c98
Packit f70c98
	typedef CListImpl<CWork> CWorkList;
Packit f70c98
}
Packit f70c98
Packit f70c98
#endif