/*---------------------------------------------------------------------------- libtunepimp -- The MusicBrainz tagging library. Let a thousand taggers bloom! Copyright (C) Robert Kaye 2003 This file is part of libtunepimp. libtunepimp is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. libtunepimp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with libtunepimp; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA $Id: vorbis_meta.h 1394 2005-06-16 06:44:37Z robert $ ----------------------------------------------------------------------------*/ //--------------------------------------------------------------------------- // This code is based on vorbis.cpp and vorbis.cpp from FreeAmp. EMusic.com // has released this code into the Public Domain. // (Thanks goes to Brett Thomas, VP Engineering Emusic.com) //--------------------------------------------------------------------------- // Portions (c) Copyright Kristian G. Kvilekval, and permission to use in LGPL // library granted on February 25th, 2003 #ifndef INCLUDED_VORBIS_H #define INCLUDED_VORBIS_H #include #include using namespace std; #include "metadata_plugin.h" class Vorbis : public MetadataPlugin { public: Vorbis(const string &encoding) : MetadataPlugin() { this->encoding = encoding; }; virtual ~Vorbis(void) {}; bool write (const string &fileName, const Metadata &metadata, bool clear); bool read (const string &fileName, Metadata &metadata); void getError(string &error) { error = errString; }; private: const string ConvertToISO(const char *utf8); string errString, encoding; }; #endif