Beispiel #1
0
 std::string RemoteControl::GetNoteContents(const std::string& uri)
 {
   Note::Ptr note;
   note = m_manager.find_by_uri (uri);
   if (!note)
     return "";
   return note->text_content();
 }