sculpto
Functions
entry_point.h File Reference

Sculpto library entry point definition module. More...

#include "application.h"

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Detailed Description

Sculpto library entry point definition module.

Author
Sabitov Kirill
Date
18 June 2022

Definition in file entry_point.h.

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)
  • Main programm function.
Parameters
argc- application run arguments count.
argv- application run arguments array.
Returns
system return code.

Definition at line 22 of file entry_point.h.

23{
24 auto app = scl::CreateApplication();
25 app->Run();
26 delete app, app = nullptr;
27}
application * CreateApplication()