feat(MainDb): hide MessageEventReferences struct

This commit is contained in:
Ronan Abhamon 2017-10-18 09:37:15 +02:00
parent 88fbd50b76
commit 24b2861eb9
2 changed files with 8 additions and 7 deletions

View file

@ -29,13 +29,7 @@
LINPHONE_BEGIN_NAMESPACE
class Content;
struct MessageEventReferences {
long eventId;
long localSipAddressId;
long remoteSipAddressId;
long chatRoomId;
};
struct MessageEventReferences;
class MainDbPrivate : public AbstractDbPrivate {
public:

View file

@ -42,6 +42,13 @@ using namespace std;
LINPHONE_BEGIN_NAMESPACE
struct MessageEventReferences {
long eventId;
long localSipAddressId;
long remoteSipAddressId;
long chatRoomId;
};
// -----------------------------------------------------------------------------
MainDb::MainDb () : AbstractDb(*new MainDbPrivate) {}