working sentry-native

This commit is contained in:
Lion Kortlepel
2021-08-08 00:28:30 +02:00
committed by Lion
parent d5769ce9be
commit da41862f49
4 changed files with 51 additions and 3 deletions

14
include/Sentry.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef SENTRY_H
#define SENTRY_H
#include <string>
// singleton, dont make this twice
class Sentry final {
public:
Sentry(const std::string& SentryUrl);
~Sentry();
private:
};
#endif // SENTRY_H