39 lines
875 B
C++
39 lines
875 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_ */
|