Beginning the design of the program. It could change in the future.
This commit is contained in:
parent
7ea618bcbf
commit
980f48959c
7 changed files with 118 additions and 6 deletions
15
include/cache_files.hpp
Normal file
15
include/cache_files.hpp
Normal 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
14
include/information.hpp
Normal 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
15
include/network.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue