1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 09:08:34 +00:00

Marked profile-api as obsolete. Wontfix that to work with CUE 2. This closes #54.

This commit is contained in:
Darth Affe 2017-01-02 16:28:39 +01:00
parent 74973df040
commit 7fe3ece615
4 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,7 @@
// ReSharper disable UnusedAutoPropertyAccessor.Global // ReSharper disable UnusedAutoPropertyAccessor.Global
// ReSharper disable UnusedMember.Global // ReSharper disable UnusedMember.Global
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
@ -13,6 +14,7 @@ namespace CUE.NET.Profiles
/// <summary> /// <summary>
/// Represents a CUE profile. /// Represents a CUE profile.
/// </summary> /// </summary>
[Obsolete("Only works with CUE 1.")]
public class CueProfile public class CueProfile
{ {
#region Properties & Fields #region Properties & Fields

View File

@ -1,4 +1,5 @@
using System.Collections.Generic; using System;
using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Xml.Linq; using System.Xml.Linq;
using CUE.NET.Brushes; using CUE.NET.Brushes;
@ -8,6 +9,7 @@ namespace CUE.NET.Profiles
/// <summary> /// <summary>
/// Represents a device of a CUE profile. /// Represents a device of a CUE profile.
/// </summary> /// </summary>
[Obsolete("Only works with CUE 1.")]
internal class CueProfileDevice internal class CueProfileDevice
{ {
#region Properties & Fields #region Properties & Fields

View File

@ -12,6 +12,7 @@ namespace CUE.NET.Profiles
/// <summary> /// <summary>
/// Represents a mode of a CUE profile. /// Represents a mode of a CUE profile.
/// </summary> /// </summary>
[Obsolete("Only works with CUE 1.")]
internal class CueProfileMode internal class CueProfileMode
{ {
#region Properties & Fields #region Properties & Fields

View File

@ -12,6 +12,7 @@ namespace CUE.NET.Profiles
/// <summary> /// <summary>
/// Represents the SDK for CUE profiles. /// Represents the SDK for CUE profiles.
/// </summary> /// </summary>
[Obsolete("Only works with CUE 1.")]
public static class CueProfiles public static class CueProfiles
{ {
#region Constants #region Constants