mirror of
https://github.com/KjellKod/g3log.git
synced 2025-01-09 11:17:33 +01:00
f5438d8232
Thanks to Dmitry (d-led) for this working proof-of-concept of this at: https://github.com/d-led/g2log-dll --HG-- rename : g2log/src/g2LogMessageBuilder.cpp => g2log/src/g2logmessagecapture.cpp rename : g2log/src/g2LogMessageBuilder.hpp => g2log/src/g2logmessagecapture.hpp
15 lines
201 B
C++
15 lines
201 B
C++
#pragma once
|
|
|
|
struct SomeLibrary {
|
|
|
|
SomeLibrary() {};
|
|
|
|
virtual ~SomeLibrary() {};
|
|
virtual void action() = 0;
|
|
};
|
|
|
|
class LibraryFactory {
|
|
public:
|
|
virtual SomeLibrary* CreateLibrary() = 0;
|
|
};
|