MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/application/math/add.hh
2024-06-07 11:12:56 +03:00

35 lines
848 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* add.hh
*
* Created on: 24 окт. 2021 г.
* Author: titov
*/
#ifndef UMLIBRARY_APPLICATION_MATH_ADD_HH_
#define UMLIBRARY_APPLICATION_MATH_ADD_HH_
#include "../../configuration/software/AppCreate.hh"
// ..add to this list of includes..
#include "equation/AdditionEquation.hh"
#include "equation/DivisionEquation.hh"
#include "equation/MultiplicationEquation.hh"
#include "equation/SubtractionEquation.hh"
#include "equation/ExponentiationEquation.hh"
#include "../ApplicationInitializerList.hh"
namespace application { namespace math {
void add( configuration::software::ApplicationConfigurator & configurator );
} /* namespace math */
} /* namespace application */
inline void application::math::add( configuration::software::ApplicationConfigurator & configurator ) {
}
#endif /* UMLIBRARY_APPLICATION_MATH_ADD_HH_ */