diff options
author | Jens Carl <j.carl43@gmx.de> | 2014-05-29 20:43:55 +0000 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-05-30 01:43:33 -0500 |
commit | 54b85bf51e42f0e74dfaab40dc0a6923dd1f876b (patch) | |
tree | 7d4fe6a14ad0ca3af149b5f5554ba097a1a7a560 /avmedia | |
parent | 82e1456e9ae19cd536c11b2bdda7a79909269c15 (diff) |
fdo#68849: Add header guards to all include files
Added header guards to files in directories avmedia/, basegfx/, chart2/, and
connectivity/
Change-Id: I94ec438ec918ccef1c518edfd9ab4944e9e2961b
Reviewed-on: https://gerrit.libreoffice.org/9555
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/vlc/wrapper/Wrapper.hxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/avmedia/source/vlc/wrapper/Wrapper.hxx b/avmedia/source/vlc/wrapper/Wrapper.hxx index 1af0323d7fab..b7d1c2265ab2 100644 --- a/avmedia/source/vlc/wrapper/Wrapper.hxx +++ b/avmedia/source/vlc/wrapper/Wrapper.hxx @@ -6,9 +6,17 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef INCLUDED_AVMEDIA_SOURCE_VLC_WRAPPER_WRAPPER_HXX +#define INCLUDED_AVMEDIA_SOURCE_VLC_WRAPPER_WRAPPER_HXX + #include "Common.hxx" #include "EventHandler.hxx" #include "EventManager.hxx" #include "Instance.hxx" #include "Media.hxx" -#include "Player.hxx"
\ No newline at end of file +#include "Player.hxx" + +#endif // INCLUDED_AVMEDIA_SOURCE_VLC_WRAPPER_WRAPPER_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |