csdms / bmi-fortran

Basic Model Interface for Fortran
https://bmi.readthedocs.io
MIT License
6 stars 10 forks source link

Make default visibility private in bmiheatf module #15

Closed mdpiper closed 5 years ago

mdpiper commented 5 years ago

Formerly, everything in the module was public, by default, and I explicitly set individual items private. It's a better Fortran programming practice to make everything private by default, then explicitly set items that need to be exposed outside the module as public.

This also cleans up the definition of the bmiheatf module.