本文整理汇总了C++中tick_counter类的典型用法代码示例。如果您正苦于以下问题:C++ tick_counter类的具体用法?C++ tick_counter怎么用?C++ tick_counter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了tick_counter类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: print
virtual void print(outputStream* st, int total_ticks) {
ticks.print_code(st, total_ticks);
st->fill_to(col2);
ticks.print_native(st);
st->fill_to(col3);
print_method_on(st);
st->cr();
}
示例2: print
virtual void print(outputStream* st, int total_ticks) {
ticks.print_code(st, total_ticks);
st->fill_to(col2);
print_receiver_klass_on(st);
st->fill_to(col3);
print_method_on(st);
st->fill_to(col4);
ticks.print_other(st);
st->cr();
}
示例3: total_ticks
int total_ticks() { return ticks.total(); }
示例4: update
void update(TickPosition where) { ticks.update(where);}