logicp преди 4 години
родител
ревизия
8d08df249d
променени са 1 файла, в които са добавени 0 реда и са изтрити 17 реда
  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__