File: testq2.m

package info (click to toggle)
mwrap 1.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 980 kB
  • sloc: cpp: 3,271; ansic: 856; makefile: 252; lex: 233; sh: 2
file content (20 lines) | stat: -rw-r--r-- 424 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
% testq_plain.m
%   Test case / demo of MWrap bindings to a C++ event queue class.
%
% Copyright (c) 2007  David Bindel
% See the file COPYING for copying permissions

q = EventQ_new();

EventQ_push(q, 1, 1.5);
EventQ_push(q, 2, 0.4);
EventQ_push(q, 3, 10);
EventQ_push(q, 'Mary had a little lamb', 8);

while ~EventQ_empty(q)
  [data,t] = EventQ_pop(q);
  fprintf('Time %g: Saw ', t);
  disp(data);
end

EventQ_destroy(q);