nicehash-api-cpp  0.0.1
client.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 
6 class Client {
7 public:
8  // Define these as virtual methods for easy compatibility with gmock
9  virtual ~ Client () {};
10  virtual std::string get (std::string const url);
11 };
virtual ~ Client()
Definition: client.hpp:9
Definition: client.hpp:6