Initial commit of Yam.
[yam.git] / Region.h
blob97c47fbbfcb052a268a31469f949cc8d2aec272c
1 #ifndef REGION_H
2 #define REGION_H
4 #include "Time.h"
6 namespace yam {
7 class Region {
8 public:
9 virtual Time* getStartTime();
10 virtual Time* getDuration();
11 virtual bool isMuted();
15 #endif