PageRenderTime 52ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/base/Kernel/Singularity.Io/IDevice.cs

#
C# | 22 lines | 10 code | 2 blank | 10 comment | 0 complexity | aa7bccf2182107707f1080c677dac016 MD5 | raw file
  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Microsoft Research Singularity
  4. //
  5. // Copyright (c) Microsoft Corporation. All rights reserved.
  6. //
  7. // File: IDevice.cs
  8. //
  9. // Note:
  10. //
  11. using System;
  12. using Microsoft.Singularity.Channels;
  13. namespace Microsoft.Singularity.Io
  14. {
  15. public interface IDevice
  16. {
  17. void Initialize();
  18. void Finalize();
  19. }
  20. } // namespace Microsoft.Singularity.Io