repo.or.cz
/
yam.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit of Yam.
[yam.git]
/
Region.h
blob
97c47fbbfcb052a268a31469f949cc8d2aec272c
1
#ifndef REGION_H
2
#define REGION_H
3
4
#include
"Time.h"
5
6
namespace
yam
{
7
class
Region
{
8
public
:
9
virtual
Time
*
getStartTime
();
10
virtual
Time
*
getDuration
();
11
virtual
bool
isMuted
();
12
};
13
}
14
15
#endif