39 lines
875 B
C++
39 lines
875 B
C++
|
|
/*!\file
|
|||
|
|
* \brief \todo <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
|||
|
|
*/
|
|||
|
|
/*
|
|||
|
|
* add.h
|
|||
|
|
*
|
|||
|
|
* Created on: 25 <EFBFBD><EFBFBD><EFBFBD>. 2019 <EFBFBD>.
|
|||
|
|
* 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_ */
|