~ubuntu-branches/ubuntu/gutsy/kid3/gutsy

« back to all changes in this revision

Viewing changes to kid3/oggfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2007-07-01 00:31:03 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070701003103-2qownnv49a7jdqm3
Tags: 0.9-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
        /**
30
30
         * Constructor.
31
31
         *
32
 
         * @param dn directory name
 
32
         * @param di directory information
33
33
         * @param fn filename
34
34
         */
35
 
        OggFile(const QString& dn, const QString& fn);
 
35
        OggFile(const DirInfo* di, const QString& fn);
36
36
 
37
37
        /**
38
38
         * Destructor.
121
121
        virtual int getTrackNumV2();
122
122
 
123
123
        /**
124
 
         * Get ID3v2 genre.
125
 
         *
126
 
         * @return number,
127
 
         *         0xff if the field does not exist,
128
 
         *         -1 if the tags do not exist.
129
 
         */
130
 
        virtual int getGenreNumV2();
131
 
 
132
 
        /**
133
124
         * Get ID3v2 genre as text.
134
125
         *
135
126
         * @return string,
181
172
        virtual void setTrackNumV2(int num);
182
173
 
183
174
        /**
184
 
         * Set ID3v2 genre.
185
 
         *
186
 
         * @param num number to set, 0xff to remove field.
187
 
         */
188
 
        virtual void setGenreNumV2(int num);
189
 
 
190
 
        /**
191
175
         * Set ID3v2 genre as text.
192
176
         *
193
177
         * @param str string to set, "" to remove field, QString::null to ignore.