-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed header guard style in core API.
- Loading branch information
Showing
4 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#ifndef ARRUS_ARRUS_CORE_API_ARRUS_H | ||
#define ARRUS_ARRUS_CORE_API_ARRUS_H | ||
#ifndef ARRUS_CORE_API_ARRUS_H | ||
#define ARRUS_CORE_API_ARRUS_H | ||
|
||
#include "arrus/core/api/common.h" | ||
#include "arrus/core/api/session.h" | ||
#include "arrus/core/api/devices.h" | ||
#include "arrus/core/api/framework.h" | ||
#include "arrus/core/api/io.h" | ||
|
||
#endif //ARRUS_ARRUS_CORE_API_ARRUS_H | ||
#endif //ARRUS_CORE_API_ARRUS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#ifndef ARRUS_ARRUS_CORE_API_COMMON_H | ||
#define ARRUS_ARRUS_CORE_API_COMMON_H | ||
#ifndef ARRUS_CORE_API_COMMON_H | ||
#define ARRUS_CORE_API_COMMON_H | ||
|
||
#include "arrus/core/api/common/types.h" | ||
#include "arrus/core/api/common/exceptions.h" | ||
#include "arrus/core/api/common/Tuple.h" | ||
#include "arrus/core/api/common/Interval.h" | ||
#include "arrus/core/api/common/logging.h" | ||
|
||
#endif //ARRUS_ARRUS_CORE_API_COMMON_H | ||
#endif //ARRUS_CORE_API_COMMON_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#ifndef ARRUS_ARRUS_CORE_API_IO_H | ||
#define ARRUS_ARRUS_CORE_API_IO_H | ||
#ifndef ARRUS_CORE_API_IO_H | ||
#define ARRUS_CORE_API_IO_H | ||
|
||
#include "arrus/core/api/io/settings.h" | ||
|
||
#endif //ARRUS_ARRUS_CORE_API_IO_H | ||
#endif //ARRUS_CORE_API_IO_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#ifndef ARRUS_ARRUS_CORE_API_SESSION_H | ||
#define ARRUS_ARRUS_CORE_API_SESSION_H | ||
#ifndef ARRUS_CORE_API_SESSION_H | ||
#define ARRUS_CORE_API_SESSION_H | ||
|
||
#include "arrus/core/api/session/Session.h" | ||
#include "arrus/core/api/session/SessionSettings.h" | ||
#include "arrus/core/api/session/UploadConstMetadata.h" | ||
#include "arrus/core/api/session/UploadResult.h" | ||
|
||
#endif //ARRUS_ARRUS_CORE_API_SESSION_H | ||
#endif //ARRUS_CORE_API_SESSION_H |