35 lines
844 B
C++
35 lines
844 B
C++
/*
|
|
* 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_ */
|