diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-12-19 22:00:05 -0200 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-12-19 22:00:05 -0200 |
commit | 54bb80251432ff49c967115f8401e7dafc5c57d6 (patch) | |
tree | 3de8eada5c3c601764f60734b71707e95260eeb7 /Project/fparser/fparser_mpfr.hh | |
parent | c8193665975686fb8a344bee3dc94914a3d3558a (diff) | |
download | PSP.git-54bb80251432ff49c967115f8401e7dafc5c57d6.tar.gz PSP.git-54bb80251432ff49c967115f8401e7dafc5c57d6.tar.xz PSP.git-54bb80251432ff49c967115f8401e7dafc5c57d6.zip |
Several implementations on math expression block
Diffstat (limited to 'Project/fparser/fparser_mpfr.hh')
-rw-r--r-- | Project/fparser/fparser_mpfr.hh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Project/fparser/fparser_mpfr.hh b/Project/fparser/fparser_mpfr.hh new file mode 100644 index 0000000..322b05d --- /dev/null +++ b/Project/fparser/fparser_mpfr.hh @@ -0,0 +1,15 @@ +/***************************************************************************\ +|* Function Parser for C++ v4.5.2 *| +|*-------------------------------------------------------------------------*| +|* Copyright: Juha Nieminen *| +\***************************************************************************/ + +#ifndef ONCE_FPARSER_MPFR_H_ +#define ONCE_FPARSER_MPFR_H_ + +#include "fparser.hh" +#include "mpfr/MpfrFloat.hh" + +class FunctionParser_mpfr: public FunctionParserBase<MpfrFloat> {}; + +#endif |