Modular Megafauna Model 1.1.5
A physiological, dynamic herbivore simulator in C++.
Loading...
Searching...
No Matches
population_list.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_POPULATION_LIST_H
12#define FAUNA_POPULATION_LIST_H
13
14#include <memory>
15#include <vector>
16
17namespace Fauna {
18// Forward Declarations
19class PopulationInterface;
20
21typedef std::vector<std::shared_ptr<PopulationInterface> > PopulationList;
22
23} // namespace Fauna
24
25#endif // FAUNA_POPULATION_LIST_H
Definition: average.h:16
std::vector< std::shared_ptr< PopulationInterface > > PopulationList
Definition: population_list.h:21