Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00034 #ifndef ACADO_TOOLKIT_EXPORT_MATLAB_INTEGRATOR_HPP
00035 #define ACADO_TOOLKIT_EXPORT_MATLAB_INTEGRATOR_HPP
00036
00037
00038 #include <acado/code_generation/export_templated_file.hpp>
00039
00040
00041 BEGIN_NAMESPACE_ACADO
00042
00043
00051 class ExportMatlabIntegrator : public ExportTemplatedFile
00052 {
00053
00054
00055
00056
00057 public:
00058
00071 ExportMatlabIntegrator( const std::string& _templateName,
00072 const std::string& _fileName,
00073 const std::string& _commonHeaderName = "",
00074 const std::string& _realString = "real_t",
00075 const std::string& _intString = "int",
00076 int _precision = 16,
00077 const std::string& _commentString = ""
00078 );
00079
00084 ExportMatlabIntegrator( const ExportMatlabIntegrator& arg
00085 );
00086
00089 virtual ~ExportMatlabIntegrator( );
00090
00095 ExportMatlabIntegrator& operator=( const ExportMatlabIntegrator& arg
00096 );
00097
00102 returnValue configure( const uint firstOrder, const uint online, const uint debugMode, const uint timingCalls, const uint numStages );
00103
00104 protected:
00105
00106 };
00107
00108
00109 CLOSE_NAMESPACE_ACADO
00110
00111
00112 #endif // ACADO_TOOLKIT_EXPORT_MATLAB_INTEGRATOR_HPP