Exemplo n.º 1
0
 internal SubScopeNode(IRIFDataScope scope, ScopeTreeNode parentScope)
     : base(scope)
 {
     m_parentScope = parentScope;
     if (m_parentScope != null)
     {
         m_parentScope.AddChildScope(scope);
     }
 }
Exemplo n.º 2
0
 internal IntersectScopeNode(IRIFDataScope scope, ScopeTreeNode parentRowScope, ScopeTreeNode parentColScope)
     : base(scope)
 {
     m_parentRowScope = parentRowScope;
     if (m_parentRowScope != null)
     {
         m_parentRowScope.AddChildScope(scope);
     }
     m_parentColumnScope = parentColScope;
     if (m_parentColumnScope != null)
     {
         m_parentColumnScope.AddChildScope(scope);
     }
     m_peerDataCells = new List <IRIFDataScope>();
 }