Exemplo n.º 1
0
            item_proxy [] m_proxies;  //item_proxy_array_t<N...>    m_proxies;


            //template <typename... T>
            public output_finder(device_t device, string format, u32 start)
            {
                m_device = device;
                m_format = format;

                m_start = start;
                //m_start_args;//{ std::forward<T>(start_args)... };
                m_start_args = new unsigned[N];
                m_proxies    = new item_proxy[N];
                for (int i = 0; i < m_proxies.Length; i++)
                {
                    m_proxies[i] = new item_proxy();
                }
            }
Exemplo n.º 2
0
            item_proxy [] m_proxies; //item_proxy_array_t<N...>    m_proxies;


            //template <typename... T>
            public output_finder(int N, device_t device, string format, u32 start)//, T &&... start_args)
            {
                this.N = N;

                m_device = device;
                m_format = format;

                m_start = start;
                //m_start_args;//{ std::forward<T>(start_args)... };
                m_start_args = new UInt32[N];
                m_proxies    = new item_proxy[N];
                for (int i = 0; i < m_proxies.Length; i++)
                {
                    m_proxies[i] = new item_proxy();
                }
            }