X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fserver.h;h=97bc26fd896b130d777426a41c680e1a58ca1bbc;hb=276a8f49c94cc80a7b29d5ecd8c7584e7ddcd87c;hp=51dc8774e166372f6327d3753552bfac2f44601b;hpb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;p=dcpomatic.git diff --git a/src/lib/server.h b/src/lib/server.h index 51dc8774e..97bc26fd8 100644 --- a/src/lib/server.h +++ b/src/lib/server.h @@ -21,71 +21,22 @@ #define DCPOMATIC_SERVER_H /** @file src/server.h - * @brief Class to describe a server to which we can send - * encoding work, and a class to implement such a server. + * @brief Server class. */ -#include "log.h" -#include "exceptions.h" -#include +#include "exception_store.h" #include #include #include -#include #include class Socket; +class Log; -namespace cxml { - class Node; -} - -/** @class ServerDescription - * @brief Class to describe a server to which we can send encoding work. +/** @class Server + * @brief A class to run a server which can accept requests to perform JPEG2000 + * encoding work. */ -class ServerDescription -{ -public: - ServerDescription () - : _host_name ("") - , _threads (1) - {} - - /** @param h Server host name or IP address in string form. - * @param t Number of threads to use on the server. - */ - ServerDescription (std::string h, int t) - : _host_name (h) - , _threads (t) - {} - - /* Default copy constructor is fine */ - - /** @return server's host name or IP address in string form */ - std::string host_name () const { - return _host_name; - } - - /** @return number of threads to use on the server */ - int threads () const { - return _threads; - } - - void set_host_name (std::string n) { - _host_name = n; - } - - void set_threads (int t) { - _threads = t; - } - -private: - /** server's host name */ - std::string _host_name; - /** number of threads to use on the server */ - int _threads; -}; - class Server : public ExceptionStore, public boost::noncopyable { public: