123456789101112131415161718192021 |
- ///////////////////////////////////////////////////////////////////////////////////////
- /// \file vegdynam.h
- /// \brief Vegetation dynamics and disturbance
- ///
- /// \author Ben Smith
- /// $Date: 2014-09-09 10:49:13 +0200 (mar, 09 sep 2014) $
- ///
- ///////////////////////////////////////////////////////////////////////////////////////
- // WHAT SHOULD THIS FILE CONTAIN?
- // Module header files need normally contain only declarations of functions defined in
- // the module that are to be accessible to the calling framework or to other modules.
- #ifndef LPJ_GUESS_VEGDYNAM_H
- #define LPJ_GUESS_VEGDYNAM_H
- #include "guess.h"
- void vegetation_dynamics(Stand& stand,Patch& patch);
- #endif // LPJ_GUESS_VEGDYNAM_H
|