Modular Megafauna Model 1.1.5
A physiological, dynamic herbivore simulator in C++.
Loading...
Searching...
No Matches
herbivore_vector.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2020 W. Traylor <wolfgang.traylor@senckenberg.de>
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
11#ifndef FAUNA_HERBIVORE_VECTOR_H
12#define FAUNA_HERBIVORE_VECTOR_H
13#include <vector>
14
15namespace Fauna {
16// Forward Declarations
17class HerbivoreInterface;
18
20typedef std::vector<HerbivoreInterface*> HerbivoreVector;
21
23typedef std::vector<const HerbivoreInterface*> ConstHerbivoreVector;
24
25} // namespace Fauna
26#endif // FAUNA_HERBIVORE_VECTOR_H
Definition: average.h:16
std::vector< HerbivoreInterface * > HerbivoreVector
A list of herbivore interface pointers.
Definition: herbivore_vector.h:20
std::vector< const HerbivoreInterface * > ConstHerbivoreVector
A list of read-only herbivore interface pointers.
Definition: herbivore_vector.h:23