Beginning the design of the program. It could change in the future.

This commit is contained in:
Florent Denef 2021-01-23 15:13:08 +01:00
parent 7ea618bcbf
commit 980f48959c
No known key found for this signature in database
GPG key ID: 873C3ACCF970C74E
7 changed files with 118 additions and 6 deletions

15
include/cache_files.hpp Normal file
View file

@ -0,0 +1,15 @@
#ifndef GEMINISERVER_CACHE_FILES_HPP
#define GEMINISERVER_CACHE_FILES_HPP
namespace gemini {
/**
* \brief This class is used to store the files in cache.
*/
class CacheFiles {
};
}
#endif //GEMINISERVER_CACHE_FILES_HPP

14
include/information.hpp Normal file
View file

@ -0,0 +1,14 @@
#ifndef GEMINISERVER_INFORMATION_HPP
#define GEMINISERVER_INFORMATION_HPP
namespace gemini {
/**
* \brief This struct is used to store information inside, used by any other class/struct.
*/
struct Information {
};
}
#endif //GEMINISERVER_INFORMATION_HPP

15
include/network.hpp Normal file
View file

@ -0,0 +1,15 @@
#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