Darth Vader 2d96a18877 Squashed 'src/' changes from 178b05c2..2bcb24a8
2bcb24a8 Merge commit '88d5ec20353fab67149768c11765c3c248ee0cea'
88d5ec20 Squashed 'phreeqcpp/' changes from 587223f..b6a23a2
d3b4b10b Merge pull request #48 from SpaceIm/fix/include-stddef-no-fortran
128b7a11 reorder classes in global_structures.h to avoid incomplete definitions
8bf2d298 add missing include of stddef.h in IPhreeqc.h if no fortran module

git-subtree-dir: src
git-subtree-split: 2bcb24a86a6da0e35150c73e0421634854a5d7b1
2024-08-14 21:45:07 +00:00
2010-02-23 05:04:35 +00:00
2014-12-19 17:58:29 +00:00
2017-03-31 20:32:48 +00:00

In Fortran, you will need to include the source file IPhreeqc_interface.F90
in your project files. This file defines the IPhreeqc Fortran module. This
is the preferred method to use IPhreeqc from a Fortran program.

     USE IPhreeqc
     INTEGER(KIND=4) id
     id = CreateIPhreeqc()

Use of the include files IPhreeqc.f.inc and IPhreeqc.f90.inc has been
deprecated. To continue using them you must unset IPHREEQC_ENABLE_MODULE in
CMake builds or use the --disable-fortran-module in configure builds. If 
either of these settings are used the Fortran include files will be
installed to the include directory.

     INCLUDE 'IPhreeqc.f90.inc'
     INTEGER(KIND=4) id
     id = CreateIPhreeqc()
Description
No description provided
Readme 40 MiB
Languages
C++ 81.6%
Makefile 9.2%
C 4.8%
Fortran 1.8%
R 1%
Other 1.3%