#include <MP3FileInfos.h>
Definition at line 20 of file MP3FileInfos.h.
Public Member Functions | |
char * | GetArtist () |
Returns the artist name. | |
char * | GetSong () |
Returns the song name. | |
MP3FileInfos () | |
Creates a new MP3 file information. | |
void | Normalize () |
Capitalizes and trims the song and artist names. | |
void | ReadFrom (const char *path) |
Sets the MP3 file information's attributes from a given file. | |
void | SetArtist (char *artist) |
Sets the artist name. | |
void | SetSong (char *song) |
Sets the song name. | |
~MP3FileInfos () | |
Destroys the MP3 file information. | |
Static Private Member Functions | |
void | Capitalize (char *string) |
Capitalizes a given string. | |
void | Trim (char *string) |
Trims a given string. | |
Private Attributes | |
char * | Artist |
The artist name. | |
char * | Song |
The song name. |
|
Creates a new MP3 file information.
|
|
Destroys the MP3 file information.
|
|
Capitalizes a given string. This method can be used to capitalize the artist and song names after they are retrieved through the getter methods.
|
|
Returns the artist name.
|
|
Returns the song name.
|
|
Capitalizes and trims the song and artist names.
|
|
Sets the MP3 file information's attributes from a given file.
|
|
Sets the artist name.
|
|
Sets the song name.
|
|
Trims a given string. This method can be used to trim the artist and song names after they are retrieved through the getter methods.
|
|
The artist name.
Definition at line 27 of file MP3FileInfos.h. |
|
The song name.
Definition at line 32 of file MP3FileInfos.h. |