42 lines
893 B
C++
42 lines
893 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.
|
|
//
|
|
// WHAT CAN I DO NOW?
|
|
// Left-click the "my_first_step()" function call inside the start_tour
|
|
// function. Let's see what happens.
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
int start_tour()
|
|
{
|
|
my_first_step();
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
#endif // MAIN_H
|
|
|