Hi, all

I have a question about the following header file
I don't understand why #define is used
Does anyone know what's the purpose of it?

Thanks

Kai


// Kai.h

#ifndef KAI_CLASS1_H
#define KAI_CLASS1_H

namespace Kai
{
class class1 {
...
} ;
}

#endif