override protected void DerivedWashNode(DLink pLink)
        {
            Debug.Assert(pLink != null);
            Sound pNode = (Sound)pLink;

            pNode.Wash();
        }
示例#2
0
        public static void Remove(Sound pSound)
        {
            Debug.Assert(pMan != null);
            Debug.Assert(pSound != null);

            pMan.baseRemove(pSound);
            pSound.Wash();
        }
示例#3
0
        override protected void derivedWash(DLink pLink)
        {
            Sound pNode = (Sound)pLink;

            pNode.Wash();
        }