Здравствуйте, Аноним, Вы писали:
А>Зачем нужна директива #pragma once в хэдере?
Это вместо :
#ifndef INC_HEADER
#define INC_HEADER
...
#endif // INC_HEADER
Можно написать
#pragma once
//...
А вообще почитать
тутАвтор:
Дата: 25.09.04
.
Здравствуйте, Аноним, Вы писали:
А>Зачем нужна директива #pragma once в хэдере?
А вот что по этому поводу говорит RTFM:
#pragma once
Specifies that the file will be included (opened) only once by the compiler in a build. This can reduce build times as the compiler will not open and read the file after the first #include of the module.
For example,
// header.h
#pragma once
Исправлено форматирование. -- ПК