MP3Frame :: initialize - Create a copy for a MP3Frame
The function copies data from the MP3 frame passed in rMP3Frame.
Implementation overview
- Create a copy from a MP3 header
 MP3Frame :: initialize ( rMP3Frame )
- Initialize empty frame
 MP3Frame :: initialize (  )
- Initialize MP3 frame from id and value
 MP3Frame :: initialize ( sName, sValue )
Implementation details
- 
Create a copy from a MP3 header
 MP3Frame  :: initialize ( odaba::utils::MP3Frame &rMP3Frame )
 The function copies data from the MP3 header passed in rMP3Header. - rMP3Frame - Reference to MP3Frame handle
 to list
- to list
- 
Initialize MP3 frame from id and value
 MP3Frame  :: initialize ( odaba::String &sName, odaba::String &sValue )
 The frame identifier passed in sName must contain exactly four characters. When the frame identifier is invalid, the function throws an exception. - sName - Name
- sValue - String value
 to list

