16 lines
233 B
C++
16 lines
233 B
C++
#ifndef GEMINISERVER_NETWORK_HPP
|
|
#define GEMINISERVER_NETWORK_HPP
|
|
|
|
|
|
namespace gemini {
|
|
/**
|
|
* \brief This is class is used for all the network things for the server.
|
|
*/
|
|
class Network {
|
|
|
|
};
|
|
}
|
|
|
|
|
|
#endif //GEMINISERVER_NETWORK_HPP
|