Changed all string* to string because strings are already pointers internally.
[yam.git] / Time.h
blobb9e79f2d914445d89754e24a14d79c9c038fa83e
1 #ifndef TIME_H
2 #define TIME_H
4 namespace yam {
5 class Time {
6 public:
7 int dividend;
8 int divisor;
9 };
12 #endif