Mercurial > pub > ImplabNet
comparison Implab/Diagnostics/LogicalOperation.cs @ 192:f1da3afc3521 release v2.1
Слияние с v2
author | cin |
---|---|
date | Fri, 22 Apr 2016 13:10:34 +0300 |
parents | 4c0e5ef99986 |
children |
comparison
equal
deleted
inserted
replaced
71:1714fd8678ef | 192:f1da3afc3521 |
---|---|
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 |