Stride Reference Manual  1.0
Age.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * This is free software: you can redistribute it and/or modify it
4  * under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 3 of the License, or
6  * any later version.
7  * The software is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  * You should have received a copy of the GNU General Public License
12  * along with the software. If not, see <http://www.gnu.org/licenses/>.
13  *
14  * Copyright 2017, Willem L, Kuylen E, Stijven S & Broeckhove J
15  */
16 
22 #include <array>
23 
24 namespace stride {
25 
27 inline constexpr unsigned int maximumAge() { return 80U; }
28 
30 inline constexpr unsigned int minAdultAge() { return 18U; }
31 
33 inline unsigned int effectiveAge(unsigned int age) { return (age <= maximumAge()) ? age : maximumAge(); }
34 
35 }
36 
Time Dependent Person DataType.
Definition: NoBehaviour.h:17
unsigned int effectiveAge(unsigned int age)
Effective age (topping of at maximum).
Definition: Age.h:33
constexpr unsigned int minAdultAge()
Maximum age for Person&#39;s.
Definition: Age.h:30
constexpr unsigned int maximumAge()
Maximum age for Person&#39;s.
Definition: Age.h:27