Added new projects of new RPC core: MyClient and MtServivce

This commit is contained in:
Viacheslav Demydiuk
2024-01-04 18:35:15 +02:00
parent 2a13699900
commit feb0192b11
24 changed files with 2078 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#pragma once
class MetaTraderHandler
{
public:
virtual ~MetaTraderHandler() = default;
virtual void SendTickToMetaTrader() = 0;
};