39 lines
892 B
C++
39 lines
892 B
C++
/*!\file
|
||
* \brief \todo Описание файла.
|
||
*/
|
||
/*
|
||
* add.h
|
||
*
|
||
* Created on: 25 июн. 2019 г.
|
||
* Author: titov
|
||
*/
|
||
|
||
#ifndef SOURCE_APPLICATION_TEST_ADD_H_
|
||
#define SOURCE_APPLICATION_TEST_ADD_H_
|
||
|
||
#include "../../configuration/software/AppCreate.hh"
|
||
|
||
//#include "SciPeripheralTest.hh"
|
||
//#include "ExampleCParamsUser.hh"
|
||
|
||
#include "../ApplicationInitializerList.hh"
|
||
|
||
namespace application { namespace tests {
|
||
|
||
void add( configuration::software::ApplicationConfigurator & configurator );
|
||
|
||
}
|
||
}
|
||
|
||
inline void application::tests::add(
|
||
configuration::software::ApplicationConfigurator & configurator ) {
|
||
|
||
using namespace configuration;
|
||
|
||
// typedef typename software::AppCreate<SciPeripheralTest, void, configuration::ProcessConfig> SCIInit;
|
||
// registration( configurator, &SCIInit::build, info::SciPeripheralTest );
|
||
|
||
}
|
||
|
||
#endif /* SOURCE_APPLICATION_TEST_ADD_H_ */
|