#ifndef INTEROP_H #define INTEROP_H #include "../qbolt.h" #include #include class GoSliceManagedWrapper { Q_DISABLE_COPY(GoSliceManagedWrapper) public: GoSliceManagedWrapper(QStringList *qsl); protected: QList rawStrings; QList strings; public: GoSlice slice; }; class Interop { public: Interop(); static GoString toGoString_WeakRef(QByteArray *qba); static int64_t GetMagic(); }; #endif // INTEROP_H