Switch to unified view

a/src/mediaserver/cdplugins/cmdtalk.h b/src/mediaserver/cdplugins/cmdtalk.h
...
...
92
    // designated method
92
    // designated method
93
    virtual bool callproc(
93
    virtual bool callproc(
94
    const std::string& proc,
94
    const std::string& proc,
95
    const std::unordered_map<std::string, std::string>& args,
95
    const std::unordered_map<std::string, std::string>& args,
96
    std::unordered_map<std::string, std::string>& rep);
96
    std::unordered_map<std::string, std::string>& rep);
97
    
97
98
    CmdTalk(const CmdTalk&) = delete;
99
    CmdTalk &operator=(const CmdTalk &) = delete;
98
private:
100
private:
99
    class Internal;
101
    class Internal;
100
    Internal *m;
102
    Internal *m{0};
101
};
103
};
102
104
103
#endif /* _CMDTALK_H_INCLUDED_ */
105
#endif /* _CMDTALK_H_INCLUDED_ */