main#
This graph shows which files directly or indirectly include main.h:
![digraph {
graph [bgcolor="#00000000"]
node [shape=rectangle style=filled fillcolor="#FFFFFF" font=Helvetica padding=2]
edge [color="#1414CE"]
"2" [label="src/main.cpp" tooltip="src/main.cpp"]
"1" [label="src/main.h" tooltip="src/main.h" fillcolor="#BFBFBF"]
"1" -> "2" [dir=back tooltip="include"]
}](../../_images/graphviz-a66d190fe1c947f712b1179403cf76856f542472.png)
Main header file for the Sunshine application.
Functions
-
int main(int argc, char *argv[])#
Main application entry point.
EXAMPLES:
main(1, const char* args[] = {"sunshine", nullptr});
- Parameters:
argc – The number of arguments.
argv – The arguments.