本文整理汇总了C++中EventBuffer::setPort方法的典型用法代码示例。如果您正苦于以下问题:C++ EventBuffer::setPort方法的具体用法?C++ EventBuffer::setPort怎么用?C++ EventBuffer::setPort使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EventBuffer
的用法示例。
在下文中一共展示了EventBuffer::setPort方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: initialization
void initialization(void) {
eventbuffer.setPort(synth.getInputPort());
nextpatterntime = t_time;
voicetokey.setSize(5);
readScore(rpscore);
voicetokey[0] = GM_CLAVES;
voicetokey[1] = GM_COWBELL;
voicetokey[2] = GM_HIGH_AGOGO;
voicetokey[3] = GM_LOW_AGOGO;
voicetokey[4] = GM_HI_BONGO;
activevoice.setSize(5);
activevoice.setAll(1);
}
示例2: initialization
void initialization(void) {
checkOptions();
timer.setPeriod(500);
timer.reset();
eventIdler.setPeriod(0);
eventBuffer.setPollPeriod(10);
eventBuffer.setPort(synth.getOutputPort());
if (colorQ) {
colormessage(cout, COLOR_INIT, colormode, colorQ);
colormessage(cout, COLOR_CLEAR_SCREEN, colormode, colorQ);
//if (!options.getBoolean("Q")) {
// print_commands();
//}
//sleep(1);
}
trackmute.resize(1000); // maximum track in humdrum file assumed to be 1000
// space 1000-10 is used for a special purpose.
std::fill(trackmute.begin(), trackmute.end(), 0);
markers.resize(1001);
std::fill(markers.begin(), markers.end(), 0);
markerindex = 0;
}