OSDN Git Service

Updated Nero AAC url.
[lamexp/LameXP.git] / src / Model_MetaInfo.h
index 8346c2a..ce352d4 100644 (file)
@@ -1,11 +1,12 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
 //
 // This program 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.
+// (at your option) any later version, but always including the *additional*
+// restrictions defined in the "License.txt" file.
 //
 // This program is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -31,7 +32,8 @@ class MetaInfoModel : public QAbstractTableModel
        Q_OBJECT
 
 public:
-       MetaInfoModel(AudioFileModel *file, unsigned int offset = 0);
+       MetaInfoModel(AudioFileModel *file);
+       MetaInfoModel(AudioFileModel_MetaInfo *metaInfo);
        ~MetaInfoModel(void);
 
        //Model functions
@@ -47,8 +49,11 @@ public:
        void clearData(bool clearMetaOnly = false);
 
 private:
-       AudioFileModel* m_audioFile;
-       unsigned int m_offset;
+       const unsigned int m_offset;
+
+       AudioFileModel *const m_fullInfo;
+       AudioFileModel_MetaInfo *const m_metaInfo;
+
        QString m_textNotSpecified;
        QString m_textUnknown;
 };