Browse Source

removing kstring

logicp 4 years ago
parent
commit
8d08df249d
1 changed files with 0 additions and 17 deletions
  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__