Mercurial > pub > ImplabNet
comparison Implab/Diagnostics/LogicalOperation.cs @ 92:4c0e5ef99986 v2
rewritten tracing
author | cin |
---|---|
date | Wed, 22 Oct 2014 18:37:56 +0400 |
parents | 2880242f987a |
children |
comparison
equal
deleted
inserted
replaced
91:cdaaf4792c22 | 92:4c0e5ef99986 |
---|---|
1 using System; | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Threading.Tasks; | |
6 | 2 |
7 namespace Implab.Diagnostics { | 3 namespace Implab.Diagnostics { |
8 public class LogicalOperation { | 4 public class LogicalOperation { |
5 public static readonly LogicalOperation EMPTY = new LogicalOperation("__EMPTY__", null); | |
6 | |
9 readonly LogicalOperation m_parent; | 7 readonly LogicalOperation m_parent; |
10 readonly string m_name; | 8 readonly string m_name; |
11 readonly int m_level; | 9 readonly int m_level; |
12 readonly int m_timestamp; | 10 readonly int m_timestamp; |
13 | 11 |