blob: f72a8fc7b60c56d3af242b0551af14ae062b1f8e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | #pragma once
#include <boost/shared_ptr.hpp>
namespace Swift {
	class Timer;
	class TimerFactory {
		public:
			virtual ~TimerFactory();
			virtual boost::shared_ptr<Timer> createTimer(int milliseconds) = 0;
	};
}
 |