mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
19 lines
497 B
C++
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_
|