hawkeye camera support(not tested)
This commit is contained in:
26
framework/Inspectron.HawkEye/RTSP/Sdp/SdpTimeZone.cs
Normal file
26
framework/Inspectron.HawkEye/RTSP/Sdp/SdpTimeZone.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Diagnostics.Contracts;
|
||||
|
||||
namespace Inspectron.HawkEye.RTSP.Sdp
|
||||
{
|
||||
public class SdpTimeZone
|
||||
{
|
||||
public SdpTimeZone()
|
||||
{
|
||||
}
|
||||
|
||||
public static SdpTimeZone ParseInvariant(string value)
|
||||
{
|
||||
if (value == null)
|
||||
throw new ArgumentNullException("value");
|
||||
Contract.EndContractBlock();
|
||||
|
||||
SdpTimeZone returnValue = new SdpTimeZone();
|
||||
|
||||
throw new NotImplementedException();
|
||||
|
||||
|
||||
return returnValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user