Static members in class

 

Hi

In the evolution of MQL5 plans, would be introduced static memebers in class? For example:

class azClass:CObject
{
   protected:
   static double Price;

   public:
   azClass();
   static double CheckPrice(void);
};

And from other class:

...
double value=azClass::CheckPrice();
...

I make some test but, at the moment, it's possible use only the static variable inner function. Or it's already possible and I am doing something wrong? I have searched in the help but I have not found nothing about this possibility.


Thanks

 

static members in class not supported yet

may be in the future - such plans exist 

 
stringo:

static members in class not supported yet

may be in the future - such plans exist 

I hope as soon as possible :)

Thanks for the reply.

Reason: