PhoenixFileParser  1.5.1
Set of tools to ease file parsing
Loading...
Searching...
No Matches
configCheckValue.h
Go to the documentation of this file.
1/***************************************
2 Auteur : Pierre Aubert
3 Mail : pierre.aubert@lapp.in2p3.fr
4 Licence : CeCILL-C
5****************************************/
6
7#ifndef __CONFIGCHECKVALUE_H__
8#define __CONFIGCHECKVALUE_H__
9
10#include "PPath.h"
11
12template<typename T>
13bool configCheckValue(T value, T minValue, bool isMinInclusive, T maxValue, bool isMaxInclusive);
14
16
17#endif
bool configCheckValue(T value, T minValue, bool isMinInclusive, T maxValue, bool isMaxInclusive)
Check if the given value is in the given boundaries.