本文整理汇总了C++中Mover::showMover方法的典型用法代码示例。如果您正苦于以下问题:C++ Mover::showMover方法的具体用法?C++ Mover::showMover怎么用?C++ Mover::showMover使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mover
的用法示例。
在下文中一共展示了Mover::showMover方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: listMotionTypes
void listMotionTypes()
{
#if __cplusplus <= 199711L
static const int arr[] = {16,2,77,29};
std::vector<int> int_vec (arr, arr + sizeof(arr) / sizeof(arr[0]) );
static const MotionType mta[] = {SCOOP_TYPE_1, SCOOP_TYPE_2};
std::vector<MotionType> template_arg_vec (mta, mta + sizeof(mta) / sizeof(mta[0]) );
#else
// NOTE: g++ -std=c++11 OR clang++ -std=c++11
std::vector <int> int_vec = {1, 2, 3, 4, 5};
std::vector<MotionType> template_arg_vec = {SCOOP_TYPE_1, SCOOP_TYPE_2};
#endif
for (int j = FIRST_MotionType; j < NUM_MotionTypes; j++) {
MotionType typer = template_arg_vec[j];
printf("MotionType(%d)\n", typer);
// const int tt = static_cast<int>(typer); // fails because value is not known at compile time
// Mover<tt> mover; // error: non-type template argument of type 'int' is not an integral constant expression
Mover<SCOOP_TYPE_1> mover;
mover.showMover();
}
}