12 out of 15 rated this helpful - Rate this topic

once

Specifies that the file will be included (opened) only once by the compiler when compiling a source code file.

#pragma once

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
....
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.