1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/csharp/service.hpp
2024-05-06 10:32:17 -03:00

15 lines
243 B
C++

#ifndef XNA_CSHARP_SERVICE_HPP
#define XNA_CSHARP_SERVICE_HPP
#include "../default.hpp"
#include "type.hpp"
#include <any>
namespace xna {
class IServiceProvider {
public:
virtual std::any GetService(Type& serviceType) = 0;
};
}
#endif