error: unknown type name 'QBuffer'; did you mean 'Qt3DRender::QBuffer'?
Solved
General and Desktop
-
wrote on 6 Feb 2021, 07:08 last edited by
I have this code:
#include <QBuffer> // --- QString m_parentName; // --- QString path = QDir::tempPath(); path = path + "/" + "temp-" + m_parentName + ".stl"; QFile file; file.setFileName(path); file.resize(0); // Clear file contents if any file.open(QIODevice::Append); // Clear and add 80 bytes of header to QByteArray QByteArray temp_ba; QBuffer tmpBuffer(&temp_ba); // => error: unknown type name 'QBuffer'; did you mean 'Qt3DRender::QBuffer'? tmpBuffer.open(QIODevice::Append); tmpBuffer.write("Generated by: " // 14 bytes "My Nice App" // 11 bytes "My Nice App" // 11 bytes "My Nice App" // 11 bytes "My Nice App" // 11 bytes "My Nice App" // 11 bytes "My Nice App" // 11 bytes , 80); file.write(temp_ba); file.flush(); tmpBuffer.close();
My qmake project file
*.pro
contains:QT += core gui qml quick quickcontrols2 widgets 3dcore 3drender 3dextras 3dinput 3dlogic 3dquick 3drender-private
I'm receiving this error:
error: unknown type name 'QBuffer'; did you mean 'Qt3DRender::QBuffer'?
qbuffer.h:56:31: note: 'Qt3DRender::QBuffer' declared hereWhat I'm doing wrong?
-
wrote on 6 Feb 2021, 07:16 last edited by
The error got resolved by replacing:
#include <QBuffer>
with:
#include <QtCore/QBuffer>
Not sure why? Namespace conflict?
-
Hi,
Do you have only the code model that is screaming at you ?
-
wrote on 6 Feb 2021, 14:18 last edited byThis post is deleted!
1/4