19 lines
456 B
C++
19 lines
456 B
C++
#include "rte_Test_OPTOS_parameters.h"
|
|
#include "Test_OPTOS.h"
|
|
#include "Test_OPTOS_cal.h"
|
|
|
|
extern Test_OPTOS_cal_type Test_OPTOS_cal_impl;
|
|
namespace slrealtime
|
|
{
|
|
/* Description of SEGMENTS */
|
|
SegmentVector segmentInfo {
|
|
{ (void*)&Test_OPTOS_cal_impl, (void**)&Test_OPTOS_cal, sizeof
|
|
(Test_OPTOS_cal_type), 2 }
|
|
};
|
|
|
|
SegmentVector &getSegmentVector(void)
|
|
{
|
|
return segmentInfo;
|
|
}
|
|
} // slrealtime
|