#include <yepp.h>
Public Member Functions | |
yeppTitleFrame (const char *buffer) | |
Constructs a Title Frame from the buffer. | |
yeppTitleFrame (const yeppTitleFrame &source) | |
Copy Constructor. | |
yeppTitleFrame () | |
Just some initialization. | |
void | getTitle (string &title) |
Makes a copy of the title into the parameter. | |
char * | getTitle (void) |
Returns a copy of the title, as newly allocated null-terminated char[].Free it when done. | |
Private Attributes | |
char | start_frame:4 |
If 0x04 then this is the first frame downloaded from the yepp. | |
char | title_frame_no:4 |
Between 1 and 3, this is the order position of the frame. | |
vector< char > | characters |
Printable characters contained in the frame. | |
Friends | |
ostream & | operator<< (ostream &os, const yeppTitleFrame &f) |
Friendly printout of the Title Frame. |
Each track information has 1-3 title frames, dowloaded from device in reverse order.
Definition at line 59 of file yepp.h.
|
Constructs a Title Frame from the buffer.
|
|
Copy Constructor.
|
|
Just some initialization.
|
|
Makes a copy of the title into the parameter.
|
|
Returns a copy of the title, as newly allocated null-terminated char[].Free it when done.
|
|
Friendly printout of the Title Frame.
|
|
If 0x04 then this is the first frame downloaded from the yepp.
|
|
Between 1 and 3, this is the order position of the frame.
|
|
Printable characters contained in the frame.
|