]> Dogcows Code - chaz/yoink/blob - src/Moof/Service.hh
5870d576b454717217a4da1e18efee8abf58a24a
[chaz/yoink] / src / Moof / Service.hh
1
2 /*] Copyright (c) 2009-2010, Charles McGarvey [**************************
3 **] All rights reserved.
4 *
5 * vi:ts=4 sw=4 tw=75
6 *
7 * Distributable under the terms and conditions of the 2-clause BSD license;
8 * see the file COPYING for a complete text of the license.
9 *
10 **************************************************************************/
11
12 #ifndef _MOOF_SERVICE_HH_
13 #define _MOOF_SERVICE_HH_
14
15 #include <Moof/Math.hh>
16
17
18 namespace Mf {
19
20
21 class ServiceBroadcaster
22 {
23 public:
24
25 ServiceBroadcaster(const std::string& name);
26
27 void update(Scalar t, Scalar dt);
28 };
29
30
31 class ServiceLocator
32 {
33 public:
34
35 ServiceLocator(const std::string& name);
36
37 void update(Scalar t, Scalar dt);
38 };
39
40
41 } // namespace Mf
42
43 #endif // _MOOF_SERVICE_HH_
44
This page took 0.031231 seconds and 3 git commands to generate.