Switch to unified view

a/dirbrowser/rreaper.cpp b/dirbrowser/rreaper.cpp
...
...
18
#include "rreaper.h"
18
#include "rreaper.h"
19
19
20
#include <list>
20
#include <list>
21
#include <queue>
21
#include <queue>
22
#include <iostream>
22
#include <iostream>
23
#ifndef UNORDERED_SET_INCLUDE
23
#include <unordered_set>
24
#define UNORDERED_SET_INCLUDE <unordered_set>
25
#endif
26
#include UNORDERED_SET_INCLUDE
27
24
28
#include <QDebug>
25
#include <QDebug>
29
26
30
27
31
using namespace std;
28
using namespace std;
...
...
43
    Internal()
40
    Internal()
44
        : status(UPNP_E_SUCCESS), cancel(false) {
41
        : status(UPNP_E_SUCCESS), cancel(false) {
45
    }
42
    }
46
    UPnPClient::CDSH serv;
43
    UPnPClient::CDSH serv;
47
    queue<CtDesc> ctobjids;
44
    queue<CtDesc> ctobjids;
48
    STD_UNORDERED_SET<string> allctobjids;
45
    std::unordered_set<string> allctobjids;
49
    int status;
46
    int status;
50
    bool cancel;
47
    bool cancel;
51
};
48
};
52
49
53
static const char cchar_pthsep = '\x01';
50
static const char cchar_pthsep = '\x01';