app/runner.cpp¶
Functions¶
| Name | |
|---|---|
| int | main(int argc, char ** argv) Just the entry point to calling sgns app. |
Attributes¶
| Name | |
|---|---|
| SuperGeniusDemoApp | app |
Detailed Description¶
Date: 2024-02-21 Henrique A. Klein ([email protected])
Functions Documentation¶
function main¶
Just the entry point to calling sgns app.
Parameters:
- argc
- argv
Return: A int
Attributes Documentation¶
variable app¶
Source code¶
#include <iostream>
#include "SuperGeniusDemoApp.hpp"
SuperGeniusDemoApp app;
int main( int argc, char **argv )
{
std::cout << "Starting SuperGenius demo app " << std::endl;
app.init( argc, argv );
app.run();
app.exit();
return 0;
}
Updated on 2026-03-04 at 13:10:44 -0800