Specifies that the file will be included only once by the compiler when compiling a source code file, so the build times is reduced.
Example:
HeaderClass.h
#pragma once
// Code placed here is included only once
namespace Application{
class HeaderClass
{
public:
HeaderClass();
};
} // namespace Application