-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[O2B-1010] Hide protobuf dependency from the c++ library
- Loading branch information
1 parent
21d7edc
commit 5c99837
Showing
21 changed files
with
86 additions
and
394 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// Created by mboulais on 22/04/24. | ||
// | ||
|
||
#ifndef CXX_CLIENT_BOOKKEEPINGAPI_DPLPROCESSTYPE_H | ||
#define CXX_CLIENT_BOOKKEEPINGAPI_DPLPROCESSTYPE_H | ||
|
||
namespace o2::bkp | ||
{ | ||
// Enum values map the proto values, and will map to pb generated file without need for conversion | ||
enum class DplProcessType { | ||
_NULL = 0, | ||
QC_TASK = 1, | ||
QC_CHECKER = 2, | ||
QC_AGGREGATOR = 3, | ||
QC_POSTPROCESSING = 4, | ||
DISPATCHER = 5, | ||
MERGER = 6, | ||
}; | ||
} // namespace o2::bkp | ||
|
||
#endif // CXX_CLIENT_BOOKKEEPINGAPI_DPLPROCESSTYPE_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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.