forked from e187038/SP_GVA1
23 lines
1.5 KiB
MQL5
23 lines
1.5 KiB
MQL5
#include "../../SP_Pedro1/Homework1/SP_Pedro_MiClase.mqh"
|
|
int OnInit(){
|
|
//---
|
|
|
|
//---
|
|
return(INIT_SUCCEEDED);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Expert deinitialization function |
|
|
//+------------------------------------------------------------------+
|
|
void OnDeinit(const int reason){
|
|
//---
|
|
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Expert tick function |
|
|
//+------------------------------------------------------------------+
|
|
void OnTick(){
|
|
//---
|
|
MiClase miclase(1.0, 2.0);
|
|
Print(miclase.ObtenerVariable1());
|
|
}
|
|
//+------------------------------------------------------------------+
|