Switch to unified view

a/libupnpp/cdirectory.hxx b/libupnpp/cdirectory.hxx
...
...
68
68
69
    /** Retrieve the directory services currently seen on the network */
69
    /** Retrieve the directory services currently seen on the network */
70
    static bool getServices(std::vector<ContentDirectoryService>&);
70
    static bool getServices(std::vector<ContentDirectoryService>&);
71
71
72
    /** Retrieve specific service designated by its friendlyName */
72
    /** Retrieve specific service designated by its friendlyName */
73
    static bool getServerByName(const string& friendlyName, 
73
    static bool getServerByName(const std::string& friendlyName, 
74
                                ContentDirectoryService& server);
74
                                ContentDirectoryService& server);
75
75
76
    /** Read a full container's children list 
76
    /** Read a full container's children list 
77
     *
77
     *
78
     * @param objectId the UPnP object Id for the container. Root has Id "0"
78
     * @param objectId the UPnP object Id for the container. Root has Id "0"
...
...
133
     * @return UPNP_E_SUCCESS for success, else libupnp error code.
133
     * @return UPNP_E_SUCCESS for success, else libupnp error code.
134
     */
134
     */
135
    int getSearchCapabilities(std::set<std::string>& result);
135
    int getSearchCapabilities(std::set<std::string>& result);
136
136
137
    // The service type string for Content Directories:
137
    // The service type string for Content Directories:
138
    static const string SType;
138
    static const std::string SType;
139
139
140
private:
140
private:
141
    int m_rdreqcnt; // Slice size to use when reading
141
    int m_rdreqcnt; // Slice size to use when reading
142
};
142
};
143
143