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
....
See Also
Pragma Directives