#include <ipod_cpp.h>
Public Member Functions | |
IPodEQPreset (IPod &ipod) | |
Constructor, creates a new, empty EQ Preset on the iPod. | |
~IPodEQPreset () | |
Destructor, does not delete the EQ Preset. | |
void | Remove (void) |
Removes the EQ Preset from the iPod. | |
std::string | GetText (int tag) |
Retrieves a text attribute from the EQ Preset. | |
void | SetText (int tag, std::string s) |
Sets a text attribute for the EQ Preset. | |
bool | HasText (int tag) |
Indicates whether the EQ Preset currently has a particular string. | |
int32_t | GetAttribute (int tag) |
Return a numerical attribute for the EQ Preset. | |
void | SetAttribute (int tag, int32_t value) |
Set the value of an attribute for the EQ Preset. | |
Friends | |
class | IPod |
|
Return a numerical attribute for the EQ Preset.
|
|
Retrieves a text attribute from the EQ Preset.
|
|
Indicates whether the EQ Preset currently has a particular string.
|
|
Set the value of an attribute for the EQ Preset.
preset.SetAttribute(IPOD_EQ_PRESET,100); |
|
Sets a text attribute for the EQ Preset.
std:string title = "Boom Box";
preset.SetText(IPOD_TITLE,title);
|