Files
Sourcetrail/src/lib/component/controller/NetworkFactory.h
T
malte_langkabel c704b4f65c ui: IDE communication integration
* handled communication from VS to Coati and vice versa.
* one bug still remains: Coati regards a tab as a single character while VS regards it as multiple characters. This causes offsets in communicated positions.
2015-10-23 13:25:15 +02:00

18 lines
365 B
C++

#ifndef NETWORK_FACTORY_H
#define NETWORK_FACTORY_H
#include <memory>
class IDECommunicationController;
class StorageAccess;
class NetworkFactory
{
public:
NetworkFactory();
virtual ~NetworkFactory();
virtual std::shared_ptr<IDECommunicationController> createIDECommunicationController(StorageAccess* storageAccess) const = 0;
};
#endif // NETWORK_FACTORY_H