singrdk/base/Services/ServiceManager/DefaultService.sg

34 lines
1.0 KiB
Plaintext
Raw Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: Services\ServiceManager\DefaultService.sg
//
// Note:
//
using System;
using Microsoft.SingSharp;
using Microsoft.Singularity;
using Microsoft.Singularity.Channels;
using Microsoft.Singularity.Directory;
using Microsoft.Singularity.ServiceManager;
namespace Microsoft.Singularity.Services.ServiceManager
{
internal class DefaultService : Service
{
// protected readonly string! name;
// protected Process process;
// protected TRef<ManagedServiceContract.Imp:Ready> endpoint;
internal DefaultService(string! serviceName,
string! binaryName,
[Claims]DirectoryServiceContract.Imp:Ready! ds)
{
base(serviceName, binaryName, ServiceType.Default, ds);
}
}
}