Mercurial > pub > ImplabNet
annotate Implab.Diagnostics.Interactive/TraceViewItem.cs @ 46:9ce97b262a7a interactive logger
Слияние с default
author | cin |
---|---|
date | Thu, 17 Apr 2014 08:49:24 +0400 |
parents | d10034588e38 |
children | b181f7bcb259 |
rev | line source |
---|---|
45 | 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 } |