aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs
blob: 3d6be1b04ed98b184fd1ff6098518b511e6189f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.CodeGeneration
{
    /// <summary>
    /// Represents a code object modifiers enumeration.
    /// </summary>
    public enum CodeObjectModifier
    {
        /// <summary>
        /// Public modifier.
        /// </summary>
        Public,
        /// <summary>
        /// Internal modifier.
        /// </summary>
        Internal,
        /// <summary>
        /// Protected modifier.
        /// </summary>
        Protected,
        /// <summary>
        /// Private modifier.
        /// </summary>
        Private,
        /// <summary>
        /// No modifier.
        /// </summary>
        None,
    }
}
public class LoggingModule : StudioModuleBase { public override string Name { get { return "Logging"; } } public override string Description { get { return "Monitor real-time machine hardware/software events and logs."; } } public override BitmapSource Image { get { return ResourceHelper.GetImageFromResources("Images/logging-module.png"); } } /// <summary> /// Gets the module entry point view type. /// </summary> public override Type MainViewType { get { return typeof(MainView); } } public override Permissions Permission { get { return Permissions.RunLoggingModule; } } public override void Dispose() { } } }