Switch to unified view

a/libupnpp/soaphelp.hxx b/libupnpp/soaphelp.hxx
...
...
60
public:
60
public:
61
    SoapEncodeInput() {}
61
    SoapEncodeInput() {}
62
    SoapEncodeInput(const std::string& st, const std::string& nm)
62
    SoapEncodeInput(const std::string& st, const std::string& nm)
63
        : serviceType(st), name(nm) {}
63
        : serviceType(st), name(nm) {}
64
    SoapEncodeInput& addarg(const std::string& k, const std::string& v) {
64
    SoapEncodeInput& addarg(const std::string& k, const std::string& v) {
65
        data.push_back(pair<string,string>(k, v));
65
        data.push_back(std::pair<std::string, std::string>(k, v));
66
        return *this;
66
        return *this;
67
    }
67
    }
68
    SoapEncodeInput& operator() (const std::string& k, const std::string& v) {
68
    SoapEncodeInput& operator() (const std::string& k, const std::string& v) {
69
        data.push_back(pair<string,string>(k, v));
69
        data.push_back(std::pair<std::string, std::string>(k, v));
70
        return *this;
70
        return *this;
71
    }
71
    }
72
    static std::string i2s(int val);
72
    static std::string i2s(int val);
73
73
74
    std::string serviceType;
74
    std::string serviceType;