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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
45
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
1 using System;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
2 using System.Collections.Generic;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
3 using System.Linq;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
4 using System.Text;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
5 using System.Threading.Tasks;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
6
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
7 namespace Implab.Diagnostics.Interactive {
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
8 public struct TraceViewItem {
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
9 public string message;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
10 public int timestamp;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
11 public int indent;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
12 public int thread;
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
13 }
d10034588e38 initial work on interactive logger
cin
parents:
diff changeset
14 }