DMRITool  v0.1.1-139-g860d86b4
Diffusion MRI Tool
exprtk_lib.h
Go to the documentation of this file.
1 
11 #ifndef __exprtk_lib_h
12 #define __exprtk_lib_h
13 
15 #include "exprtk.hpp"
16 
17 
18 // use extern to build libs, so that it is fast in building
19 // Use extern template instantiations (since C++11)
20 // http://stackoverflow.com/questions/373142/what-techniques-can-be-used-to-speed-up-c-compilation-times
21 
22 extern template class exprtk::expression<double>;
23 //extern template class exprtk::symbol_table<double>;
24 extern template class exprtk::parser<double>;
25 
26 #endif
27 
28