* moved sample projects from data to user folder * added fallback files for app and window settings * implemented copying app and window settings to user folder when not found on app startup * fixed upgrading for windows installer
44 lines
992 B
C++
44 lines
992 B
C++
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
|
|
|
|
#include "code_tutorial_1.h"
|
|
#include "code_tutorial_2.h"
|
|
#include "code_tutorial_3.h"
|
|
#include "graph_tutorial_1.h"
|
|
#include "graph_tutorial_2.h"
|
|
#include "graph_tutorial_3.h"
|
|
#include "graph_tutorial_4.h"
|
|
#include "search_tutorial_1.h"
|
|
#include "search_tutorial_2.h"
|
|
#include "search_tutorial_3.h"
|
|
#include "search_tutorial_4.h"
|
|
#include "search_tutorial_5.h"
|
|
|
|
#include "my_first_step.h"
|
|
|
|
//------------------------------------------------------------------------------
|
|
//
|
|
// WHAT IS THIS?
|
|
// Now the Code View finally shows some real code of the tutorial project.
|
|
// And who could think of a better place to start a tutorial that involves
|
|
// code than a main function?
|
|
//
|
|
// WHAT CAN I DO NOW?
|
|
// Left-click the "my_first_step()" function call inside the main function.
|
|
// Lets see what happens.
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
int main()
|
|
{
|
|
my_first_step();
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
#endif // MAIN_H
|
|
|