aboutsummaryrefslogtreecommitdiff
path: root/BDInfo/TSInterleavedFile.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-28 15:12:36 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-28 15:12:36 -0500
commit5e2e6b1716fc42afcb535351eec7fe4cca561ff8 (patch)
treeeacd22f92975877a13d77ed1f113b7df12e10527 /BDInfo/TSInterleavedFile.cs
parent7cacbeee7b01a30e85339266270aa1ee8c866ec8 (diff)
moved bdinfo to a nuget package
Diffstat (limited to 'BDInfo/TSInterleavedFile.cs')
-rw-r--r--BDInfo/TSInterleavedFile.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/BDInfo/TSInterleavedFile.cs b/BDInfo/TSInterleavedFile.cs
deleted file mode 100644
index 27049e660..000000000
--- a/BDInfo/TSInterleavedFile.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-//============================================================================
-// BDInfo - Blu-ray Video and Audio Analysis Tool
-// Copyright © 2010 Cinema Squid
-//
-// This library is free software; you can redistribute it and/or
-// modify it under the terms of the GNU Lesser General Public
-// License as published by the Free Software Foundation; either
-// version 2.1 of the License, or (at your option) any later version.
-//
-// This library is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-// Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public
-// License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-//=============================================================================
-
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Text;
-
-// TODO: Do more interesting things here...
-
-namespace BDInfo
-{
- public class TSInterleavedFile
- {
- public FileInfo FileInfo = null;
- public string Name = null;
-
- public TSInterleavedFile(FileInfo fileInfo)
- {
- FileInfo = fileInfo;
- Name = fileInfo.Name.ToUpper();
- }
- }
-}