a/src/qtgui/xmltosd.h b/src/qtgui/xmltosd.h
...
...
58
 *   <AS>space-separated suffix list</AS>    <!-- autosuffs -->
58
 *   <AS>space-separated suffix list</AS>    <!-- autosuffs -->
59
 *   <EX>base64-encoded config path>/EX>     <!-- [multiple] ext index -->
59
 *   <EX>base64-encoded config path>/EX>     <!-- [multiple] ext index -->
60
 * </SD>
60
 * </SD>
61
 */ 
61
 */ 
62
62
63
#include MEMORY_INCLUDE
63
#include <memory>
64
#include "searchdata.h"
64
#include "searchdata.h"
65
65
66
// Parsing XML from advanced search history or saved advanced search to to
66
// Parsing XML from advanced search history or saved advanced search to to
67
// SearchData structure:
67
// SearchData structure:
68
STD_SHARED_PTR<Rcl::SearchData> xmlToSearchData(const string& xml);
68
std::shared_ptr<Rcl::SearchData> xmlToSearchData(const string& xml);
69
69
70
// Parsing XML from saved simple search to ssearch parameters
70
// Parsing XML from saved simple search to ssearch parameters
71
struct SSearchDef {
71
struct SSearchDef {
72
    SSearchDef() : autophrase(false), mode(0) {}
72
    SSearchDef() : autophrase(false), mode(0) {}
73
    std::vector<std::string> stemlangs;
73
    std::vector<std::string> stemlangs;