use `#pragma once` or `#ifndef` as guard in header
Created by: jacquesqiao
For now PaddlePaddle use #pragma once
as the guard, but the google cpp style suggests to use #ifndef
(https://google.github.io/styleguide/cppguide.html#The__define_Guard)
In the
So, will we change to follow google cpp style in the future?