1 //
2 // Copyright (c) 2010-2018 Antmicro
3 // Copyright (c) 2011-2015 Realtime Embedded
4 //
5 // This file is licensed under the MIT License.
6 // Full license text is available in 'licenses/MIT.txt'.
7 //
8 using System;
9 
10 namespace Antmicro.Renode.Core.Structure
11 {
12     public sealed class AttachedRegistrationPoint : ITheOnlyPossibleRegistrationPoint
13     {
14         public static AttachedRegistrationPoint Instance { get; private set; }
15 
AttachedRegistrationPoint()16         static AttachedRegistrationPoint()
17         {
18             Instance = new AttachedRegistrationPoint();
19         }
20 
21         public string PrettyString
22         {
23             get
24             {
25                 return "attached";
26             }
27         }
28 
ToString()29         public override string ToString()
30         {
31             return PrettyString;
32         }
33 
AttachedRegistrationPoint()34         private AttachedRegistrationPoint()
35         {
36         }
37     }
38 }
39 
40