21 lines
442 B
C
21 lines
442 B
C
|
#ifndef LINUX_IPCORE_PDECCONFIGDEFS_H_
|
||
|
#define LINUX_IPCORE_PDECCONFIGDEFS_H_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace pdecconfigdefs {
|
||
|
|
||
|
namespace paramkeys {
|
||
|
static const std::string POSITIVE_WINDOW = "positive_window";
|
||
|
static const std::string NEGATIVE_WINDOW = "negattive_window";
|
||
|
}
|
||
|
|
||
|
namespace defaultvalue {
|
||
|
static const uint8_t positiveWindow = 10;
|
||
|
static const uint8_t negativeWindow = 151;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* LINUX_IPCORE_PDECCONFIGDEFS_H_ */
|