--- a/src/rcldb/rclquery.h
+++ b/src/rcldb/rclquery.h
@@ -19,7 +19,7 @@
#include <string>
#include <vector>
-#include "refcntr.h"
+#include MEMORY_INCLUDE
#include "searchdata.h"
#ifndef NO_NAMESPACES
@@ -92,7 +92,7 @@
* be called repeatedly on the same object which gets reinitialized each
* time.
*/
- bool setQuery(RefCntr<SearchData> q);
+ bool setQuery(STD_SHARED_PTR<SearchData> q);
/** Get results count for current query */
int getResCnt();
@@ -117,7 +117,7 @@
int getFirstMatchPage(const Doc &doc, std::string& term);
/** Retrieve a reference to the searchData we are using */
- RefCntr<SearchData> getSD()
+ STD_SHARED_PTR<SearchData> getSD()
{
return m_sd;
}
@@ -143,7 +143,7 @@
bool m_sortAscending;
bool m_collapseDuplicates;
int m_resCnt;
- RefCntr<SearchData> m_sd;
+ STD_SHARED_PTR<SearchData> m_sd;
int m_snipMaxPosWalk;
/* Copyconst and assignement private and forbidden */