Switch to unified view

a/src/rcldb/rclquery.h b/src/rcldb/rclquery.h
...
...
30
class Doc;
30
class Doc;
31
31
32
enum abstract_result {
32
enum abstract_result {
33
    ABSRES_ERROR = 0,
33
    ABSRES_ERROR = 0,
34
    ABSRES_OK = 1,
34
    ABSRES_OK = 1,
35
    ABSRES_TRUNC = 2
35
    ABSRES_TRUNC = 2,
36
    ABSRES_TERMMISS = 3
36
};
37
};
37
38
38
// Snippet entry for makeDocAbstract
39
// Snippet entry for makeDocAbstract
39
class Snippet {
40
class Snippet {
40
public:
41
public:
...
...
124
    std::string m_sortField;
125
    std::string m_sortField;
125
    bool   m_sortAscending;
126
    bool   m_sortAscending;
126
    bool   m_collapseDuplicates;     
127
    bool   m_collapseDuplicates;     
127
    int    m_resCnt;
128
    int    m_resCnt;
128
    RefCntr<SearchData> m_sd;
129
    RefCntr<SearchData> m_sd;
130
    int    m_snipMaxPosWalk;
129
131
130
    /* Copyconst and assignement private and forbidden */
132
    /* Copyconst and assignement private and forbidden */
131
    Query(const Query &) {}
133
    Query(const Query &) {}
132
    Query & operator=(const Query &) {return *this;};
134
    Query & operator=(const Query &) {return *this;};
133
};
135
};