Merge pull request #1096 from bpay/fix-include-guards

Fix include guards
This commit is contained in:
Luis Anton Rebollo 2015-01-24 23:02:13 +01:00
commit ea0e3fd683
6 changed files with 22 additions and 3 deletions

View file

@ -20,6 +20,9 @@
// IN THE SOFTWARE.
//-----------------------------------------------------------------------------
#ifndef _GFX_D3D_VIDEOCAPTURED3D9_H_
#define _GFX_D3D_VIDEOCAPTURED3D9_H_
#ifndef _VIDEOCAPTURE_H_
#include "gfx/video/videoCapture.h"
#endif
@ -79,4 +82,6 @@ protected:
public:
VideoFrameGrabberD3D9();
~VideoFrameGrabberD3D9();
};
};
#endif // _GFX_D3D_VIDEOCAPTURED3D9_H_