瀏覽代碼

removing kstring

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__