Add : AlbumArtist and RecordedDate information for content
[platform/framework/native/content.git] / src / FCnt_AudioContentInfoImpl.cpp
index 88a0e50..5afe79d 100644 (file)
@@ -46,6 +46,7 @@ _AudioContentInfoImpl::_AudioContentInfoImpl(void)
        , __title(L"")
        , __albumName(L"")
        , __artist(L"")
+       , __albumArtist(L"")
        , __composer(L"")
        , __genre(L"")
        , __copyright(L"")
@@ -205,6 +206,12 @@ _AudioContentInfoImpl::GetArtist(void) const
 }
 
 String
+_AudioContentInfoImpl::GetAlbumArtist(void) const
+{
+       return __albumArtist;
+}
+
+String
 _AudioContentInfoImpl::GetComposer(void) const
 {
        if (__composer.IsEmpty())
@@ -295,6 +302,12 @@ _AudioContentInfoImpl::SetArtist(const Tizen::Base::String& artist)
 }
 
 void
+_AudioContentInfoImpl::SetAlbumArtist(const Tizen::Base::String& albumArtist)
+{
+       __albumArtist = albumArtist;
+}
+
+void
 _AudioContentInfoImpl::SetComposer(const Tizen::Base::String& composer)
 {
        __composer = composer;