linphone-desktop/tests/src/app/Database.hpp
2016-12-19 14:54:32 +01:00

19 lines
497 B
C++

#ifndef DATABASE_H_
#define DATABASE_H_
#include <string>
// =============================================================================
namespace Database {
// Returns the databases paths.
// If files cannot be created or are unavailable, a empty string is returned.
// Use the directories separator of used OS.
std::string getAvatarsPath ();
std::string getCallHistoryPath ();
std::string getFriendsListPath ();
std::string getMessageHistoryPath ();
}
#endif // DATABASE_H_