annotate 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
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 }