Files
qt-creator/tests/manual/gdbdebugger/spacy path/plugin with space.cpp
2008-12-02 12:01:29 +01:00

14 lines
210 B
C++

#include <stdio.h>
#include <qglobal.h>
extern "C" Q_DECL_EXPORT int pluginTest()
{
int s = 0;
for (int i = 1; i != 2000; ++i)
s += i;
fprintf(stderr, "in plugin test");
return s;
}