First Steps C++

Including the class library header files

The classes and methods of the library are defined in header files, which have to be included in the code. The file tisudshl.h will include all the files required by the library. To include this file in your source code, open the file StdAfx.h (which was created by the AppWizard) and insert the following lines at the end:

#include <tisudshl.h>
#include <algorithm>

Next step: Library Initialization