9 lines
160 B
C++
9 lines
160 B
C++
#ifndef _MIDISEQ_EVENTBLOCK_HPP_
|
|
#define _MIDISEQ_EVENTBLOCK_HPP_
|
|
class PureEvent;
|
|
template <class T>
|
|
class Block;
|
|
typedef Block<PureEvent> EventBlock;
|
|
#endif
|
|
|