diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-28 15:12:36 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-28 15:12:36 -0500 |
| commit | 5e2e6b1716fc42afcb535351eec7fe4cca561ff8 (patch) | |
| tree | eacd22f92975877a13d77ed1f113b7df12e10527 /BDInfo/BDInfoSettings.cs | |
| parent | 7cacbeee7b01a30e85339266270aa1ee8c866ec8 (diff) | |
moved bdinfo to a nuget package
Diffstat (limited to 'BDInfo/BDInfoSettings.cs')
| -rw-r--r-- | BDInfo/BDInfoSettings.cs | 110 |
1 files changed, 0 insertions, 110 deletions
diff --git a/BDInfo/BDInfoSettings.cs b/BDInfo/BDInfoSettings.cs deleted file mode 100644 index 108e03af1..000000000 --- a/BDInfo/BDInfoSettings.cs +++ /dev/null @@ -1,110 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace BDInfo -{ - class BDInfoSettings - { - public static bool GenerateStreamDiagnostics - { - get - { - return true; - } - } - - public static bool EnableSSIF - { - get - { - return true; - } - } - - public static bool AutosaveReport - { - get - { - return false; - } - } - - public static bool GenerateFrameDataFile - { - get - { - return false; - } - } - - public static bool FilterLoopingPlaylists - { - get - { - return true; - } - } - - public static bool FilterShortPlaylists - { - get - { - return false; - } - } - - public static int FilterShortPlaylistsValue - { - get - { - return 0; - } - } - - public static bool UseImagePrefix - { - get - { - return false; - } - } - - public static string UseImagePrefixValue - { - get - { - return null; - } - } - - /// <summary> - /// Setting this to false throws an IComparer error on some discs. - /// </summary> - public static bool KeepStreamOrder - { - get - { - return true; - } - } - - public static bool GenerateTextSummary - { - get - { - return false; - } - } - - public static string LastPath - { - get - { - return string.Empty; - } - } - } -} |
