Object List – library MetaTrader 5
/**************************************************************** Object List The List class template provides a basic container for storing an ordered list of objects. For convenience, List also provides synonyms for stack operations, which make code that uses List for stacks more explicit without defining another class. /**/ /****************************************************************/ template<typename T>class ObjectList { public: //construction, destruction, initialization, and assignment … Read more