123456789101112131415161718192021 |
- ///////////////////////////////////////////////////////////////////////////////////////
- /// \file somdynam.h
- /// \brief Soil organic matter dynamics
- ///
- /// \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_SOMDYNAM_H
- #define LPJ_GUESS_SOMDYNAM_H
- #include "guess.h"
- void som_dynamics(Patch& patch);
- #endif // LPJ_GUESS_SOMDYNAM_H
|