コード例 #1
0
 public VideoEvent(GRLocation location, string videoFilePath, string startTimeStamp, string endTimeStamp, int ID) : base(location, startTimeStamp, ID, "VIDEO")
 {
     this.videoFilePath  = videoFilePath;
     this.startTimeStamp = startTimeStamp;
     this.endTimeStamp   = endTimeStamp;
 }
コード例 #2
0
 public TrackLogEvent(GRLocation location, string logFilePath, string startTimeStamp, string endTimeStamp, int ID) : base(location, startTimeStamp, ID, "TRACKLOG")
 {
     this.logFilePath    = logFilePath;
     this.startTimeStamp = startTimeStamp;
     this.endTimeStamp   = endTimeStamp;
 }