~alexlauni/do/dos-new-do

« back to all changes in this revision

Viewing changes to src/Core/Base/src/UniverseManager.cs

  • Committer: Alex Launi
  • Date: 2010-08-05 21:21:51 UTC
  • Revision ID: alex.launi@gmail.com-20100805212151-8olyxlnbif7dzjq5
Continue fleshing out the architecture

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
// 
19
19
//  You should have received a copy of the GNU General Public License
20
20
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
 
21
22
using System;
 
23
 
 
24
using Do.Services;
 
25
 
22
26
namespace Do
23
27
{
24
 
        public class UniverseManager
 
28
        public class UniverseManager : IUniverseManager
25
29
        {
26
30
                public UniverseManager ()
27
31
                {
28
32
                }
 
33
 
 
34
#region IExportable implementation
 
35
                public IExportable Parent {
 
36
                        get {
 
37
                                return null;
 
38
                        }
 
39
                }
 
40
#endregion
 
41
 
 
42
#region IService implementation
 
43
                public string ServiceName {
 
44
                        get {
 
45
                                return "UniverseManager";
 
46
                        }
 
47
                }
 
48
#endregion
29
49
        }
30
50
}
31
51