aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2022-02-02 06:49:30 +0000
committerSaturneric <[email protected]>2022-02-02 06:49:30 +0000
commitcbefd7e5df4ab5f62e6fa53b5eba38bd5ea313a7 (patch)
tree27752edb10205b51037526bf3c4dffd4f86dc9ad /src/main.cpp
parent<refactor, fix>(ui): Repair and tidy the signal and slot docking (diff)
downloadGpgFrontend-cbefd7e5df4ab5f62e6fa53b5eba38bd5ea313a7.tar.gz
GpgFrontend-cbefd7e5df4ab5f62e6fa53b5eba38bd5ea313a7.zip
<doc>(project): Improve code document-related Settings
1. Generated code documentation should not be included in Git. 2. The contents of the project's home page in the code document should be placed in main.cpp.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 8b6f7904..668fffd3 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -26,6 +26,10 @@
*
*/
+/**
+ * \mainpage GpgFrontend Develop Document Main Page
+ */
+
#include <csetjmp>
#include <csignal>
#include <cstdlib>
@@ -76,6 +80,12 @@ extern void handle_signal(int sig);
*/
extern void before_exit();
+/**
+ *
+ * @param argc
+ * @param argv
+ * @return
+ */
int main(int argc, char* argv[]) {
// Register Signals
signal(SIGSEGV, handle_signal);