Exemplo n.º 1
0
        public static void Process()
        {
            // get the singleton
            ColPairManager pColPairMan = ColPairManager.PrivGetInstance();

            ColPair pColPair = (ColPair)pColPairMan.BaseGetActive();

            while (pColPair != null)
            {
                // set the current active
                pColPairMan.pActiveColPair = pColPair;

                // do the check for a single pair
                pColPair.Process();

                // advance to next
                pColPair = (ColPair)pColPair.GetNext();
            }
        }