initial check in
This commit is contained in:
60
sln/qstringDebug/GeneratedFiles/Debug/moc_qstringdebug.cpp
Normal file
60
sln/qstringDebug/GeneratedFiles/Debug/moc_qstringdebug.cpp
Normal file
@@ -0,0 +1,60 @@
|
||||
/****************************************************************************
|
||||
** Meta object code from reading C++ file 'qstringdebug.h'
|
||||
**
|
||||
** Created: Fri May 30 00:05:16 2008
|
||||
** by: The Qt Meta Object Compiler version 59 (Qt 4.3.3)
|
||||
**
|
||||
** WARNING! All changes made in this file will be lost!
|
||||
*****************************************************************************/
|
||||
|
||||
#include "../../qstringdebug.h"
|
||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
||||
#error "The header file 'qstringdebug.h' doesn't include <QObject>."
|
||||
#elif Q_MOC_OUTPUT_REVISION != 59
|
||||
#error "This file was generated using the moc from 4.3.3. It"
|
||||
#error "cannot be used with the include files from this version of Qt."
|
||||
#error "(The moc has changed too much.)"
|
||||
#endif
|
||||
|
||||
static const uint qt_meta_data_qstringDebug[] = {
|
||||
|
||||
// content:
|
||||
1, // revision
|
||||
0, // classname
|
||||
0, 0, // classinfo
|
||||
0, 0, // methods
|
||||
0, 0, // properties
|
||||
0, 0, // enums/sets
|
||||
|
||||
0 // eod
|
||||
};
|
||||
|
||||
static const char qt_meta_stringdata_qstringDebug[] = {
|
||||
"qstringDebug\0"
|
||||
};
|
||||
|
||||
const QMetaObject qstringDebug::staticMetaObject = {
|
||||
{ &QMainWindow::staticMetaObject, qt_meta_stringdata_qstringDebug,
|
||||
qt_meta_data_qstringDebug, 0 }
|
||||
};
|
||||
|
||||
const QMetaObject *qstringDebug::metaObject() const
|
||||
{
|
||||
return &staticMetaObject;
|
||||
}
|
||||
|
||||
void *qstringDebug::qt_metacast(const char *_clname)
|
||||
{
|
||||
if (!_clname) return 0;
|
||||
if (!strcmp(_clname, qt_meta_stringdata_qstringDebug))
|
||||
return static_cast<void*>(const_cast< qstringDebug*>(this));
|
||||
return QMainWindow::qt_metacast(_clname);
|
||||
}
|
||||
|
||||
int qstringDebug::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
||||
{
|
||||
_id = QMainWindow::qt_metacall(_c, _id, _a);
|
||||
if (_id < 0)
|
||||
return _id;
|
||||
return _id;
|
||||
}
|
||||
66
sln/qstringDebug/GeneratedFiles/ui_qstringdebug.h
Normal file
66
sln/qstringDebug/GeneratedFiles/ui_qstringdebug.h
Normal file
@@ -0,0 +1,66 @@
|
||||
/********************************************************************************
|
||||
** Form generated from reading ui file 'qstringdebug.ui'
|
||||
**
|
||||
** Created: Fri May 30 00:05:11 2008
|
||||
** by: Qt User Interface Compiler version 4.3.3
|
||||
**
|
||||
** WARNING! All changes made in this file will be lost when recompiling ui file!
|
||||
********************************************************************************/
|
||||
|
||||
#ifndef UI_QSTRINGDEBUG_H
|
||||
#define UI_QSTRINGDEBUG_H
|
||||
|
||||
#include <QtCore/QVariant>
|
||||
#include <QtGui/QAction>
|
||||
#include <QtGui/QApplication>
|
||||
#include <QtGui/QButtonGroup>
|
||||
#include <QtGui/QMainWindow>
|
||||
#include <QtGui/QMenuBar>
|
||||
#include <QtGui/QStatusBar>
|
||||
#include <QtGui/QToolBar>
|
||||
#include <QtGui/QWidget>
|
||||
|
||||
class Ui_qstringDebugClass
|
||||
{
|
||||
public:
|
||||
QMenuBar *menuBar;
|
||||
QToolBar *mainToolBar;
|
||||
QWidget *centralWidget;
|
||||
QStatusBar *statusBar;
|
||||
|
||||
void setupUi(QMainWindow *qstringDebugClass)
|
||||
{
|
||||
if (qstringDebugClass->objectName().isEmpty())
|
||||
qstringDebugClass->setObjectName(QString::fromUtf8("qstringDebugClass"));
|
||||
qstringDebugClass->resize(600, 400);
|
||||
menuBar = new QMenuBar(qstringDebugClass);
|
||||
menuBar->setObjectName(QString::fromUtf8("menuBar"));
|
||||
qstringDebugClass->setMenuBar(menuBar);
|
||||
mainToolBar = new QToolBar(qstringDebugClass);
|
||||
mainToolBar->setObjectName(QString::fromUtf8("mainToolBar"));
|
||||
qstringDebugClass->addToolBar(mainToolBar);
|
||||
centralWidget = new QWidget(qstringDebugClass);
|
||||
centralWidget->setObjectName(QString::fromUtf8("centralWidget"));
|
||||
qstringDebugClass->setCentralWidget(centralWidget);
|
||||
statusBar = new QStatusBar(qstringDebugClass);
|
||||
statusBar->setObjectName(QString::fromUtf8("statusBar"));
|
||||
qstringDebugClass->setStatusBar(statusBar);
|
||||
|
||||
retranslateUi(qstringDebugClass);
|
||||
|
||||
QMetaObject::connectSlotsByName(qstringDebugClass);
|
||||
} // setupUi
|
||||
|
||||
void retranslateUi(QMainWindow *qstringDebugClass)
|
||||
{
|
||||
qstringDebugClass->setWindowTitle(QApplication::translate("qstringDebugClass", "qstringDebug", 0, QApplication::UnicodeUTF8));
|
||||
Q_UNUSED(qstringDebugClass);
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
||||
namespace Ui {
|
||||
class qstringDebugClass: public Ui_qstringDebugClass {};
|
||||
} // namespace Ui
|
||||
|
||||
#endif // UI_QSTRINGDEBUG_H
|
||||
11
sln/qstringDebug/main.cpp
Normal file
11
sln/qstringDebug/main.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <QtGui/QApplication>
|
||||
#include "qstringdebug.h"
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
qstringDebug w;
|
||||
w.show();
|
||||
a.connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit()));
|
||||
return a.exec();
|
||||
}
|
||||
26
sln/qstringDebug/qstringDebug.sln
Normal file
26
sln/qstringDebug/qstringDebug.sln
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||
# Visual Studio 2005
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qstringDebug", "qstringDebug.vcproj", "{A1511B5B-670F-4CB4-83D4-F9E66868E48B}"
|
||||
GlobalSection(Qt) = preSolution
|
||||
Integration = True
|
||||
EndGlobalSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(Qt) = preSolution
|
||||
Integration = True
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{A1511B5B-670F-4CB4-83D4-F9E66868E48B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{A1511B5B-670F-4CB4-83D4-F9E66868E48B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{A1511B5B-670F-4CB4-83D4-F9E66868E48B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A1511B5B-670F-4CB4-83D4-F9E66868E48B}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
343
sln/qstringDebug/qstringDebug.vcproj
Normal file
343
sln/qstringDebug/qstringDebug.vcproj
Normal file
@@ -0,0 +1,343 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="qstringDebug"
|
||||
ProjectGUID="{A1511B5B-670F-4CB4-83D4-F9E66868E48B}"
|
||||
Keyword="Qt4VSv1.0"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=".\GeneratedFiles;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName);;$(QTDIR)\include\QtCore;$(QTDIR)\include\QtGui"
|
||||
PreprocessorDefinitions="UNICODE,WIN32,QT_NO_DEBUG,NDEBUG,QT_CORE_LIB,QT_GUI_LIB"
|
||||
RuntimeLibrary="2"
|
||||
TreatWChar_tAsBuiltInType="false"
|
||||
DebugInformationFormat="0"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="gdi32.lib comdlg32.lib oleaut32.lib imm32.lib winmm.lib winspool.lib ws2_32.lib ole32.lib user32.lib msimg32.lib shell32.lib kernel32.lib uuid.lib advapi32.lib qtmain.lib QtCore.lib QtGui.lib"
|
||||
OutputFile="$(OutDir)\$(ProjectName).exe"
|
||||
AdditionalLibraryDirectories="$(QTDIR)\lib"
|
||||
GenerateDebugInformation="false"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=".\GeneratedFiles;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName);;$(QTDIR)\include\QtCore;$(QTDIR)\include\QtGui"
|
||||
PreprocessorDefinitions="UNICODE,WIN32,QT_CORE_LIB,QT_GUI_LIB"
|
||||
RuntimeLibrary="3"
|
||||
TreatWChar_tAsBuiltInType="false"
|
||||
DebugInformationFormat="3"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
AdditionalDependencies="gdi32.lib comdlg32.lib oleaut32.lib imm32.lib winmm.lib winspool.lib ws2_32.lib ole32.lib user32.lib msimg32.lib shell32.lib kernel32.lib uuid.lib advapi32.lib qtmaind.lib QtCored4.lib QtGuid4.lib"
|
||||
OutputFile="$(OutDir)\$(ProjectName).exe"
|
||||
AdditionalLibraryDirectories="$(QTDIR)\lib"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="2"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;cxx;c;def"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\main.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\qstringdebug.cpp"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\qstringdebug.h"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Moc'ing qstringdebug.h..."
|
||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -I".\GeneratedFiles" -I"$(QTDIR)\include" -I".\GeneratedFiles\$(ConfigurationName)" -I"." -I"$(QTDIR)\include\QtCore" -I"$(QTDIR)\include\QtGui" ".\qstringdebug.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_qstringdebug.cpp"
"
|
||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";.\qstringdebug.h"
|
||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_qstringdebug.cpp""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Moc'ing qstringdebug.h..."
|
||||
CommandLine=""$(QTDIR)\bin\moc.exe" -DUNICODE -DWIN32 -DQT_CORE_LIB -DQT_GUI_LIB -I".\GeneratedFiles" -I"$(QTDIR)\include" -I".\GeneratedFiles\$(ConfigurationName)" -I"." -I"$(QTDIR)\include\QtCore" -I"$(QTDIR)\include\QtGui" ".\qstringdebug.h" -o ".\GeneratedFiles\$(ConfigurationName)\moc_qstringdebug.cpp"
"
|
||||
AdditionalDependencies=""$(QTDIR)\bin\moc.exe";.\qstringdebug.h"
|
||||
Outputs="".\GeneratedFiles\$(ConfigurationName)\moc_qstringdebug.cpp""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Form Files"
|
||||
Filter="ui"
|
||||
UniqueIdentifier="{99349809-55BA-4b9d-BF79-8FDBB0286EB3}"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\qstringdebug.ui"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Uic'ing $(InputPath)..."
|
||||
CommandLine=""$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_qstringdebug.h" "$(InputPath)"
"
|
||||
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
||||
Outputs="".\GeneratedFiles\ui_qstringdebug.h""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description="Uic'ing $(InputPath)..."
|
||||
CommandLine=""$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_qstringdebug.h" "$(InputPath)"
"
|
||||
AdditionalDependencies="$(QTDIR)\bin\uic.exe"
|
||||
Outputs="".\GeneratedFiles\ui_qstringdebug.h""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="qrc;*"
|
||||
UniqueIdentifier="{D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E}"
|
||||
ParseFiles="false"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\qstringdebug.qrc"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description=""
|
||||
CommandLine=""
|
||||
AdditionalDependencies=""
|
||||
Outputs=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
Description=""
|
||||
CommandLine=""
|
||||
AdditionalDependencies=""
|
||||
Outputs=""
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Generated Files"
|
||||
Filter="moc;h;cpp"
|
||||
UniqueIdentifier="{71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11}"
|
||||
SourceControlFiles="false"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\GeneratedFiles\Debug\moc_qstringdebug.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\GeneratedFiles\Release\moc_qstringdebug.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
ExcludedFromBuild="true"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\GeneratedFiles\ui_qstringdebug.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
<Global
|
||||
Name="MocDir"
|
||||
Value=".\GeneratedFiles\$(ConfigurationName)"
|
||||
/>
|
||||
<Global
|
||||
Name="QtVersion"
|
||||
Value="4.3.3_Ekki"
|
||||
/>
|
||||
<Global
|
||||
Name="RccDir"
|
||||
Value=".\GeneratedFiles"
|
||||
/>
|
||||
<Global
|
||||
Name="UicDir"
|
||||
Value=".\GeneratedFiles"
|
||||
/>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
14
sln/qstringDebug/qstringdebug.cpp
Normal file
14
sln/qstringDebug/qstringdebug.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "qstringdebug.h"
|
||||
|
||||
qstringDebug::qstringDebug(QWidget *parent, Qt::WFlags flags)
|
||||
: QMainWindow(parent, flags)
|
||||
{
|
||||
ui.setupUi(this);
|
||||
|
||||
QString str = "kukukuku";
|
||||
}
|
||||
|
||||
qstringDebug::~qstringDebug()
|
||||
{
|
||||
|
||||
}
|
||||
19
sln/qstringDebug/qstringdebug.h
Normal file
19
sln/qstringDebug/qstringdebug.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef QSTRINGDEBUG_H
|
||||
#define QSTRINGDEBUG_H
|
||||
|
||||
#include <QtGui/QMainWindow>
|
||||
#include "ui_qstringdebug.h"
|
||||
|
||||
class qstringDebug : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
qstringDebug(QWidget *parent = 0, Qt::WFlags flags = 0);
|
||||
~qstringDebug();
|
||||
|
||||
private:
|
||||
Ui::qstringDebugClass ui;
|
||||
};
|
||||
|
||||
#endif // QSTRINGDEBUG_H
|
||||
Reference in New Issue
Block a user