Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 2c9ed00

Browse files
matthiasrichtersawenzel
authored andcommitted
adding missing standard headers functional, map and, vector
some small documentaion updates
1 parent 9f2c6f3 commit 2c9ed00

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

Algorithm/include/Algorithm/HeaderStack.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ void dispatchHeaderStackCallback(PtrType ptr,
107107
* type is in the stack, its content will be assigned to the variable.
108108
*
109109
* Usage:
110+
* DataHeader dataheader;
111+
* TriggerHeader triggerheader
110112
* parseHeaderStack(ptr, size,
111-
* MyHeader(),
112-
* [] (const auto & h) {
113-
* // do something with h
114-
* }
113+
* dataheader,
114+
* triggerheader
115115
*/
116116
template<
117117
typename PtrType,

Algorithm/include/Algorithm/Parser.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
/// @since 2017-09-20
1717
/// @brief Utilities for parsing of data sequences
1818

19+
#include <functional>
20+
#include <vector>
21+
1922
namespace o2 {
2023

2124
namespace algorithm {

Algorithm/include/Algorithm/TableView.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
/// @since 2017-09-21
1717
/// @brief Container class for multiple sequences of data wrapped by markers
1818

19+
#include <vector>
20+
#include <map>
21+
1922
namespace o2 {
2023

2124
namespace algorithm {

0 commit comments

Comments
 (0)