Mercurial > pub > ImplabNet
comparison Implab.Diagnostics.Interactive/TraceViewItem.cs @ 45:d10034588e38 interactive logger
initial work on interactive logger
author | cin |
---|---|
date | Thu, 17 Apr 2014 03:05:53 +0400 |
parents | |
children | b181f7bcb259 |
comparison
equal
deleted
inserted
replaced
42:3ba6778ed336 | 45:d10034588e38 |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Threading.Tasks; | |
6 | |
7 namespace Implab.Diagnostics.Interactive { | |
8 public struct TraceViewItem { | |
9 public string message; | |
10 public int timestamp; | |
11 public int indent; | |
12 public int thread; | |
13 } | |
14 } |