| 12 | { |
| 13 | public: |
| 14 | Driver(std::string server_name, std::string name, int version) |
| 15 | : _server_name(server_name), _name(name), _version(version) |
| 16 | {} |
| 17 | virtual ~Driver() {} |
| 18 | |
| 19 | std::string server_name() const {return _server_name;} |
nothing calls this directly
no outgoing calls
no test coverage detected