#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 paramkeys

namespace defaultvalue {
static const uint8_t positiveWindow = 10;
static const uint8_t negativeWindow = 151;
}  // namespace defaultvalue

}  // namespace pdecconfigdefs

#endif /* LINUX_IPCORE_PDECCONFIGDEFS_H_ */