Changed all string* to string because strings are already pointers internally.
[yam.git] / Region.h
blobdbd4995573f2ee80232aff9a09696f15dd1999b2
1 #ifndef REGION_H
2 #define REGION_H
4 #include "Time.h"
6 namespace yam {
7 class Region {
8 public:
9 virtual Time* getStartTime() = 0;
10 virtual Time* getDuration() = 0;
11 virtual bool isMuted() = 0;
15 #endif