Skip to content

Commit a0f940a

Browse files
author
hekra
committed
add missing guards
1 parent 17b4412 commit a0f940a

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/Test/Headers.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
** $CISCO_END_LICENSE$
1717
**
1818
****************************************************************************/
19+
20+
#ifndef WD_SETUP_H
21+
#define WD_SETUP_H
22+
1923
#include <QtCore/QObject>
2024
#include <QtCore/QTextCodec>
2125

@@ -234,3 +238,4 @@ int wd_setup(int argc, char *argv[])
234238

235239
return startError;
236240
}
241+
#endif // WD_SETUP_H

src/Test/Samples.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
**
1818
****************************************************************************/
1919

20+
#ifndef SAMPLES_SETUP_H
21+
#define SAMPLES_SETUP_H
22+
2023
#include "WindowTest.h"
2124
#include "ClickTest.h"
2225
#include "ElementAttributeTest.h"
@@ -110,3 +113,4 @@ int wd_samples_setup(webdriver::ViewCreator* widgetCreator,
110113
#endif // WD_ENABLE_PLAYER
111114
return 0;
112115
}
116+
#endif // SAMPLES_SETUP_H

0 commit comments

Comments
 (0)