Bladeren bron

removing kstring

logicp 4 jaren geleden
bovenliggende
commit
8d08df249d
1 gewijzigde bestanden met toevoegingen van 0 en 17 verwijderingen
  1. 0 17
      headers/kstring.hpp

+ 0 - 17
headers/kstring.hpp

@@ -1,17 +0,0 @@
-#ifndef __KSTRING_HPP__
-#define __KSTRING_HPP__
-
-#include <QString>
-/**
- * @brief The KString class
- * Solves the interface problem with FlatBuffers, which seems designed to work best with std::string
- */
-
-class KString : public QString {
- public:
-  const char* c_str() const {
-    return toUtf8().constData();
-  }
-};
-
-#endif // __KSTRING_HPP__