Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. Simulation::Simulation(Temporal& _temporal, Grid& _grid, string _filename, Species &species)
  2.     : temporal(_temporal), grid(_grid), filename(_filename)
  3. {
  4.     list_species = std::vector<Species>();
  5.     list_species.push_back(species);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement