diff options
author | George Hazan <ghazan@miranda.im> | 2020-05-12 19:49:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-05-12 19:49:29 +0300 |
commit | 8408d060b805d5c945ce519ff4e1f5f52b9b1038 (patch) | |
tree | 3efd0ab171e216b12ee593fb2aaad3a6bbe51dfd /include | |
parent | c5d7d8ab002cf73fd309a4eb65e4fc8d5dafa9db (diff) |
fix for import libraries
Diffstat (limited to 'include')
-rw-r--r-- | include/m_database.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/m_database.h b/include/m_database.h index 972a1d2ece..03f99ee21e 100644 --- a/include/m_database.h +++ b/include/m_database.h @@ -710,15 +710,15 @@ protected: DBEVENTINFO &dbei;
MCONTACT hContact;
- virtual ~EventCursor();
- virtual MEVENT FetchNext() = 0;
-
public:
EventCursor(MCONTACT _1, DBEVENTINFO &_2) :
hContact(_1),
dbei(_2)
{ }
+ virtual ~EventCursor();
+ virtual MEVENT FetchNext() = 0;
+
__forceinline MEVENT begin() {
return FetchNext();
}
|