Changeset 2656 for GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface
- Timestamp:
- 04/22/08 02:40:51 (17 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/LogWriter.h
r2584 r2656 13 13 { 14 14 15 //class ViewCellContainer;16 15 17 16 class LogWriter -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlRenderer.h
r2644 r2656 49 49 50 50 51 class QtGlRendererBuffer : public QObject, public QGLPixelBuffer, public GlRendererBuffer 51 class __declspec(dllexport) QtGlRendererBuffer 52 : public QObject, public QGLPixelBuffer, public GlRendererBuffer 52 53 { 53 54 Q_OBJECT … … 86 87 87 88 88 class QtRendererControlWidget : public QWidget89 class __declspec(dllexport) QtRendererControlWidget : public QWidget 89 90 { 90 91 Q_OBJECT … … 169 170 170 171 171 class QtGlRendererWidget: public QGLWidget, public GlRendererWidget172 class __declspec(dllexport) QtGlRendererWidget: public QGLWidget, public GlRendererWidget 172 173 { 173 174 Q_OBJECT … … 568 569 569 570 570 class QtGlDebuggerWidget: public QGLWidget571 class __declspec(dllexport) QtGlDebuggerWidget: public QGLWidget 571 572 { 572 573 Q_OBJECT -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlViewer.h
r2614 r2656 13 13 14 14 15 class QtGlViewer : public QGLWidget15 class __declspec(dllexport) QtGlViewer : public QGLWidget 16 16 { 17 17 //Q_OBJECT -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtInterface05.vcproj
r2655 r2656 80 80 <Configuration 81 81 Name="Release|Win32" 82 OutputDirectory="$(SolutionDir) $(ConfigurationName)"83 IntermediateDirectory="$( ConfigurationName)"82 OutputDirectory="$(SolutionDir)\lib05\$(ConfigurationName)" 83 IntermediateDirectory="$(SolutionDir)\obj05\$(ConfigurationName)" 84 84 ConfigurationType="4" 85 85 CharacterSet="1" … … 103 103 <Tool 104 104 Name="VCCLCompilerTool" 105 AdditionalIncludeDirectories="..\src;"$(QT_PATH)\include\QtOpenGL";..\..\src\;"$(QT_PATH)\include\Qt"" 106 PreprocessorDefinitions="WIN32;NDEBUG;_LIB" 105 WholeProgramOptimization="false" 106 AdditionalIncludeDirectories="..\src;..\..\src\;..\..\..\..\..\..\..\NonGTP\Zlib\include;"$(QTDIR)\include\QtOpenGL";"$(QTDIR)\include\Qt";"$(QTDIR)\include\QtGui";"$(QTDIR)\include\QtCore";"$(QTDIR)\include";"$(CG_INC_PATH)"" 107 PreprocessorDefinitions="WIN32;NDEBUG;_LIB;GTP_INTERNAL;USE_QT;USE_VERBOSE_PVS;USE_CG" 107 108 RuntimeLibrary="2" 108 109 UsePrecompiledHeader="0" … … 149 150 > 150 151 <File 151 RelativePath="LogReader.h" 152 > 153 </File> 154 <File 155 RelativePath="LogWriter.h" 156 > 157 </File> 158 <File 159 RelativePath="QtGlRenderer.h" 160 > 161 </File> 162 <File 163 RelativePath="QtGlViewer.h" 164 > 165 </File> 166 <File 167 RelativePath="QtPreprocessorThread.h" 152 RelativePath="LogReader.cpp" 153 > 154 </File> 155 <File 156 RelativePath="LogWriter.cpp" 157 > 158 </File> 159 <File 160 RelativePath=".\moc_QtGlRenderer.cpp" 161 > 162 </File> 163 <File 164 RelativePath="QtGlRenderer.cpp" 165 > 166 </File> 167 <File 168 RelativePath="QtGlRendererDll.cpp" 169 > 170 </File> 171 <File 172 RelativePath="QtGlViewer.cpp" 173 > 174 </File> 175 <File 176 RelativePath="QtPreprocessorThread.cpp" 168 177 > 169 178 </File> … … 175 184 > 176 185 <File 177 RelativePath="LogReader.cpp" 178 > 179 </File> 180 <File 181 RelativePath="LogWriter.cpp" 182 > 183 </File> 184 <File 185 RelativePath="QtGlRenderer.cpp" 186 > 187 </File> 188 <File 189 RelativePath="QtGlRendererDll.cpp" 190 > 191 </File> 192 <File 193 RelativePath="QtGlViewer.cpp" 194 > 195 </File> 196 <File 197 RelativePath="QtPreprocessorThread.cpp" 186 RelativePath="LogReader.h" 187 > 188 </File> 189 <File 190 RelativePath="LogWriter.h" 191 > 192 </File> 193 <File 194 RelativePath="QtGlRenderer.h" 195 > 196 <FileConfiguration 197 Name="Release|Win32" 198 > 199 <Tool 200 Name="VCCustomBuildTool" 201 Description="Performing moc on $(InputName).h" 202 CommandLine="$(QTDIR)\bin\moc.exe $(InputDir)$(InputName).h -o $(InputDir)moc_$(InputName).cpp
" 203 Outputs=""$(InputDir) moc_$(InputName).cpp" 204 /> 205 </FileConfiguration> 206 </File> 207 <File 208 RelativePath="QtGlViewer.h" 209 > 210 </File> 211 <File 212 RelativePath="QtPreprocessorThread.h" 198 213 > 199 214 </File> 200 215 </Filter> 201 <File202 RelativePath=".\ReadMe.txt"203 >204 </File>205 216 </Files> 206 217 <Globals> -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtPreprocessorThread.h
r2608 r2656 2 2 #define __QT_PREPROCESSOR_THREAD_H 3 3 4 #ifdef USE_QT4 //#ifdef USE_QT 5 5 6 6 #include <QThread> … … 11 11 class Preprocessor; 12 12 13 class QtPreprocessorThread : public PreprocessorThread, public QThread13 class __declspec(dllexport) QtPreprocessorThread : public PreprocessorThread, public QThread 14 14 { 15 15 public: … … 36 36 37 37 #endif 38 #endif38 //#endif
Note: See TracChangeset
for help on using the changeset viewer.