-
Notifications
You must be signed in to change notification settings - Fork 0
/
all.pro
1991 lines (1982 loc) · 80.3 KB
/
all.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
QT -= core gui
TARGET = test
CONFIG -= qt
TEMPLATE = app
HEADERS += \
aggregation/aggregate.h \
aggregation/aggregation_global.h \
app/app_version.h \
app/crashhandlersetup.h \
app/qtlocalpeer.h \
app/qtlockedfile.h \
app/qtsingleapplication.h \
core/actionmanager/actioncontainer.h \
core/actionmanager/actioncontainer_p.h \
core/actionmanager/actionmanager.h \
core/actionmanager/actionmanager_p.h \
core/actionmanager/command.h \
core/actionmanager/command_p.h \
core/actionmanager/commandbutton.h \
core/actionmanager/commandmappings.h \
core/actionmanager/commandsfile.h \
core/dialogs/addtovcsdialog.h \
core/dialogs/externaltoolconfig.h \
core/dialogs/ioptionspage.h \
core/dialogs/newdialog.h \
core/dialogs/openwithdialog.h \
core/dialogs/promptoverwritedialog.h \
core/dialogs/readonlyfilesdialog.h \
core/dialogs/saveitemsdialog.h \
core/dialogs/settingsdialog.h \
core/dialogs/shortcutsettings.h \
core/editormanager/documentmodel.h \
core/editormanager/editorarea.h \
core/editormanager/editormanager.h \
core/editormanager/editormanager_p.h \
core/editormanager/editorview.h \
core/editormanager/editorwindow.h \
core/editormanager/ieditor.h \
core/editormanager/ieditorfactory.h \
core/editormanager/iexternaleditor.h \
core/editormanager/openeditorsview.h \
core/editormanager/openeditorswindow.h \
core/editormanager/systemeditor.h \
core/find/basetextfind.h \
core/find/currentdocumentfind.h \
core/find/findplugin.h \
core/find/findtoolbar.h \
core/find/findtoolwindow.h \
core/find/highlightscrollbar.h \
core/find/ifindfilter.h \
core/find/ifindsupport.h \
core/find/itemviewfind.h \
core/find/searchresultcolor.h \
core/find/searchresulttreeitemdelegate.h \
core/find/searchresulttreeitemroles.h \
core/find/searchresulttreeitems.h \
core/find/searchresulttreemodel.h \
core/find/searchresulttreeview.h \
core/find/searchresultwidget.h \
core/find/searchresultwindow.h \
core/find/textfindconstants.h \
core/locator/basefilefilter.h \
core/locator/commandlocator.h \
core/locator/directoryfilter.h \
core/locator/executefilter.h \
core/locator/externaltoolsfilter.h \
core/locator/filesystemfilter.h \
core/locator/ilocatorfilter.h \
core/locator/locator.h \
core/locator/locatorconstants.h \
core/locator/locatorfiltersfilter.h \
core/locator/locatorfiltertest.h \
core/locator/locatormanager.h \
core/locator/locatorsearchutils.h \
core/locator/locatorsettingspage.h \
core/locator/locatorwidget.h \
core/locator/opendocumentsfilter.h \
core/locator/spotlightlocatorfilter.h \
core/progressmanager/futureprogress.h \
core/progressmanager/progressbar.h \
core/progressmanager/progressmanager.h \
core/progressmanager/progressmanager_p.h \
core/progressmanager/progressview.h \
core/themeeditor/colorrole.h \
core/themeeditor/colorvariable.h \
core/themeeditor/sectionedtablemodel.h \
core/themeeditor/themecolors.h \
core/themeeditor/themecolorstableview.h \
core/themeeditor/themeeditorwidget.h \
core/themeeditor/themesettingsitemdelegate.h \
core/themeeditor/themesettingstablemodel.h \
core/basefilewizard.h \
core/basefilewizardfactory.h \
core/core_global.h \
core/coreconstants.h \
core/corejsextensions.h \
core/coreplugin.h \
core/designmode.h \
core/documentmanager.h \
core/editmode.h \
core/editortoolbar.h \
core/externaltool.h \
core/externaltoolmanager.h \
core/fancyactionbar.h \
core/fancytabwidget.h \
core/featureprovider.h \
core/fileiconprovider.h \
core/fileutils.h \
core/findplaceholder.h \
core/generalsettings.h \
core/generatedfile.h \
core/helpmanager.h \
core/icontext.h \
core/icore.h \
core/icorelistener.h \
core/id.h \
core/idocument.h \
core/idocumentfactory.h \
core/ifilewizardextension.h \
core/imode.h \
core/inavigationwidgetfactory.h \
core/infobar.h \
core/ioutputpane.h \
core/iversioncontrol.h \
core/iwelcomepage.h \
core/iwizardfactory.h \
core/jsexpander.h \
core/mainwindow.h \
core/manhattanstyle.h \
core/messagebox.h \
core/messagemanager.h \
core/messageoutputwindow.h \
core/mimetypemagicdialog.h \
core/mimetypesettings.h \
core/minisplitter.h \
core/modemanager.h \
core/navigationsubwidget.h \
core/navigationwidget.h \
core/opendocumentstreeview.h \
core/outputpane.h \
core/outputpanemanager.h \
core/outputwindow.h \
core/patchtool.h \
core/plugindialog.h \
core/removefiledialog.h \
core/rightpane.h \
core/settingsdatabase.h \
core/shellcommand.h \
core/sidebar.h \
core/sidebarwidget.h \
core/statusbarmanager.h \
core/statusbarwidget.h \
core/styleanimator.h \
core/systemsettings.h \
core/testdatadir.h \
core/textdocument.h \
core/themesettings.h \
core/themesettingswidget.h \
core/toolsettings.h \
core/variablechooser.h \
core/vcsmanager.h \
core/versiondialog.h \
core/windowsupport.h \
cpptools/cpptoolsconstants.h \
extensionsystem/extensionsystem_global.h \
extensionsystem/invoker.h \
extensionsystem/iplugin.h \
extensionsystem/iplugin_p.h \
extensionsystem/optionsparser.h \
extensionsystem/plugincollection.h \
extensionsystem/plugindetailsview.h \
extensionsystem/pluginerroroverview.h \
extensionsystem/pluginerrorview.h \
extensionsystem/pluginmanager.h \
extensionsystem/pluginmanager_p.h \
extensionsystem/pluginspec.h \
extensionsystem/pluginspec_p.h \
extensionsystem/pluginview.h \
projectexplorer/abi.h \
projectexplorer/abiwidget.h \
projectexplorer/abstractmsvctoolchain.h \
projectexplorer/abstractprocessstep.h \
projectexplorer/allprojectsfilter.h \
projectexplorer/allprojectsfind.h \
projectexplorer/ansifilterparser.h \
projectexplorer/applicationlauncher.h \
projectexplorer/appoutputpane.h \
projectexplorer/baseprojectwizarddialog.h \
projectexplorer/buildconfiguration.h \
projectexplorer/buildconfigurationmodel.h \
projectexplorer/buildenvironmentwidget.h \
projectexplorer/buildinfo.h \
projectexplorer/buildmanager.h \
projectexplorer/buildprogress.h \
projectexplorer/buildsettingspropertiespage.h \
projectexplorer/buildstep.h \
projectexplorer/buildsteplist.h \
projectexplorer/buildstepspage.h \
projectexplorer/buildtargetinfo.h \
projectexplorer/cesdkhandler.h \
projectexplorer/clangparser.h \
projectexplorer/codestylesettingspropertiespage.h \
projectexplorer/compileoutputwindow.h \
projectexplorer/configtaskhandler.h \
projectexplorer/copytaskhandler.h \
projectexplorer/corelistenercheckingforrunningbuild.h \
projectexplorer/currentprojectfilter.h \
projectexplorer/currentprojectfind.h \
projectexplorer/customparser.h \
projectexplorer/customparserconfigdialog.h \
projectexplorer/customtoolchain.h \
projectexplorer/dependenciespanel.h \
projectexplorer/deployablefile.h \
projectexplorer/deployconfiguration.h \
projectexplorer/deployconfigurationmodel.h \
projectexplorer/deploymentdata.h \
projectexplorer/deploymentdatamodel.h \
projectexplorer/deploymentdataview.h \
projectexplorer/doubletabwidget.h \
projectexplorer/editorconfiguration.h \
projectexplorer/editorsettingspropertiespage.h \
projectexplorer/environmentaspect.h \
projectexplorer/environmentaspectwidget.h \
projectexplorer/environmentitemswidget.h \
projectexplorer/environmentwidget.h \
projectexplorer/expanddata.h \
projectexplorer/foldernavigationwidget.h \
projectexplorer/gccparser.h \
projectexplorer/gcctoolchain.h \
projectexplorer/gcctoolchainfactories.h \
projectexplorer/gnumakeparser.h \
projectexplorer/headerpath.h \
projectexplorer/importwidget.h \
projectexplorer/ioutputparser.h \
projectexplorer/ipotentialkit.h \
projectexplorer/iprojectmanager.h \
projectexplorer/itaskhandler.h \
projectexplorer/journaldwatcher.h \
projectexplorer/kit.h \
projectexplorer/kitchooser.h \
projectexplorer/kitconfigwidget.h \
projectexplorer/kitfeatureprovider.h \
projectexplorer/kitinformation.h \
projectexplorer/kitinformationconfigwidget.h \
projectexplorer/kitmanager.h \
projectexplorer/kitmanagerconfigwidget.h \
projectexplorer/kitmodel.h \
projectexplorer/kitoptionspage.h \
projectexplorer/ldparser.h \
projectexplorer/linuxiccparser.h \
projectexplorer/localapplicationrunconfiguration.h \
projectexplorer/localapplicationruncontrol.h \
projectexplorer/localenvironmentaspect.h \
projectexplorer/metatypedeclarations.h \
projectexplorer/miniprojecttargetselector.h \
projectexplorer/msvcparser.h \
projectexplorer/msvctoolchain.h \
projectexplorer/namedwidget.h \
projectexplorer/nodesvisitor.h \
projectexplorer/osparser.h \
projectexplorer/panelswidget.h \
projectexplorer/pluginfilefactory.h \
projectexplorer/processparameters.h \
projectexplorer/processstep.h \
projectexplorer/project.h \
projectexplorer/projectconfiguration.h \
projectexplorer/projectexplorer.h \
projectexplorer/projectexplorer_export.h \
projectexplorer/projectexplorerconstants.h \
projectexplorer/projectexplorersettings.h \
projectexplorer/projectexplorersettingspage.h \
projectexplorer/projectfilewizardextension.h \
projectexplorer/projectimporter.h \
projectexplorer/projectmacroexpander.h \
projectexplorer/projectmodels.h \
projectexplorer/projectnodes.h \
projectexplorer/projectpanelfactory.h \
projectexplorer/projecttree.h \
projectexplorer/projecttreewidget.h \
projectexplorer/projectwelcomepage.h \
projectexplorer/projectwindow.h \
projectexplorer/projectwizardpage.h \
projectexplorer/propertiespanel.h \
projectexplorer/removetaskhandler.h \
projectexplorer/runconfiguration.h \
projectexplorer/runconfigurationaspects.h \
projectexplorer/runconfigurationmodel.h \
projectexplorer/runsettingspropertiespage.h \
projectexplorer/selectablefilesmodel.h \
projectexplorer/session.h \
projectexplorer/sessiondialog.h \
projectexplorer/settingsaccessor.h \
projectexplorer/showineditortaskhandler.h \
projectexplorer/showoutputtaskhandler.h \
projectexplorer/target.h \
projectexplorer/targetselector.h \
projectexplorer/targetsettingspanel.h \
projectexplorer/targetsettingswidget.h \
projectexplorer/targetsetuppage.h \
projectexplorer/targetsetupwidget.h \
projectexplorer/task.h \
projectexplorer/taskhub.h \
projectexplorer/taskmodel.h \
projectexplorer/taskwindow.h \
projectexplorer/toolchain.h \
projectexplorer/toolchainconfigwidget.h \
projectexplorer/toolchainmanager.h \
projectexplorer/toolchainoptionspage.h \
projectexplorer/unconfiguredprojectpanel.h \
projectexplorer/vcsannotatetaskhandler.h \
projectexplorer/waitforstopdialog.h \
projectexplorer/wincetoolchain.h \
projectexplorer/windebuginterface.h \
projectexplorer/xcodebuildparser.h \
resourceeditor/qrceditor/qrceditor.h \
resourceeditor/qrceditor/resourcefile_p.h \
resourceeditor/qrceditor/resourceview.h \
resourceeditor/qrceditor/undocommands_p.h \
resourceeditor/resource_global.h \
resourceeditor/resourceeditorconstants.h \
resourceeditor/resourceeditorfactory.h \
resourceeditor/resourceeditorplugin.h \
resourceeditor/resourceeditorw.h \
resourceeditor/resourcenode.h \
texteditor/codeassist/assistenums.h \
texteditor/codeassist/assistinterface.h \
texteditor/codeassist/assistproposalitem.h \
texteditor/codeassist/codeassistant.h \
texteditor/codeassist/completionassistprovider.h \
texteditor/codeassist/functionhintproposal.h \
texteditor/codeassist/functionhintproposalwidget.h \
texteditor/codeassist/genericproposal.h \
texteditor/codeassist/genericproposalmodel.h \
texteditor/codeassist/genericproposalwidget.h \
texteditor/codeassist/iassistprocessor.h \
texteditor/codeassist/iassistproposal.h \
texteditor/codeassist/iassistproposalmodel.h \
texteditor/codeassist/iassistproposalwidget.h \
texteditor/codeassist/iassistprovider.h \
texteditor/codeassist/ifunctionhintproposalmodel.h \
texteditor/codeassist/keywordscompletionassist.h \
texteditor/codeassist/quickfixassistprocessor.h \
texteditor/codeassist/quickfixassistprovider.h \
texteditor/codeassist/runner.h \
texteditor/generichighlighter/context.h \
texteditor/generichighlighter/definitiondownloader.h \
texteditor/generichighlighter/dynamicrule.h \
texteditor/generichighlighter/highlightdefinition.h \
texteditor/generichighlighter/highlightdefinitionhandler.h \
texteditor/generichighlighter/highlightdefinitionmetadata.h \
texteditor/generichighlighter/highlighter.h \
texteditor/generichighlighter/highlighterexception.h \
texteditor/generichighlighter/highlightersettings.h \
texteditor/generichighlighter/highlightersettingspage.h \
texteditor/generichighlighter/includerulesinstruction.h \
texteditor/generichighlighter/itemdata.h \
texteditor/generichighlighter/keywordlist.h \
texteditor/generichighlighter/managedefinitionsdialog.h \
texteditor/generichighlighter/manager.h \
texteditor/generichighlighter/progressdata.h \
texteditor/generichighlighter/reuse.h \
texteditor/generichighlighter/rule.h \
texteditor/generichighlighter/specificrules.h \
texteditor/snippets/isnippetprovider.h \
texteditor/snippets/plaintextsnippetprovider.h \
texteditor/snippets/reuse.h \
texteditor/snippets/snippet.h \
texteditor/snippets/snippetassistcollector.h \
texteditor/snippets/snippeteditor.h \
texteditor/snippets/snippetscollection.h \
texteditor/snippets/snippetssettings.h \
texteditor/snippets/snippetssettingspage.h \
texteditor/autocompleter.h \
texteditor/basefilefind.h \
texteditor/basefilefind_p.h \
texteditor/basehoverhandler.h \
texteditor/behaviorsettings.h \
texteditor/behaviorsettingspage.h \
texteditor/behaviorsettingswidget.h \
texteditor/circularclipboard.h \
texteditor/circularclipboardassist.h \
texteditor/codecselector.h \
texteditor/codestyleeditor.h \
texteditor/codestylepool.h \
texteditor/codestyleselectorwidget.h \
texteditor/colorscheme.h \
texteditor/colorschemeedit.h \
texteditor/completionsettings.h \
texteditor/convenience.h \
texteditor/displaysettings.h \
texteditor/displaysettingspage.h \
texteditor/extraencodingsettings.h \
texteditor/findincurrentfile.h \
texteditor/findinfiles.h \
texteditor/findinopenfiles.h \
texteditor/fontsettings.h \
texteditor/fontsettingspage.h \
texteditor/helpitem.h \
texteditor/highlighterutils.h \
texteditor/icodestylepreferences.h \
texteditor/icodestylepreferencesfactory.h \
texteditor/indenter.h \
texteditor/ioutlinewidget.h \
texteditor/linenumberfilter.h \
texteditor/marginsettings.h \
texteditor/normalindenter.h \
texteditor/outlinefactory.h \
texteditor/plaintexteditorfactory.h \
texteditor/quickfix.h \
texteditor/refactoringchanges.h \
texteditor/refactoroverlay.h \
texteditor/semantichighlighter.h \
texteditor/simplecodestylepreferences.h \
texteditor/simplecodestylepreferenceswidget.h \
texteditor/storagesettings.h \
texteditor/syntaxhighlighter.h \
texteditor/syntaxhighlighter_p.h \
texteditor/tabsettings.h \
texteditor/tabsettingswidget.h \
texteditor/textdocument.h \
texteditor/textdocumentlayout.h \
texteditor/texteditor.h \
texteditor/texteditor_global.h \
texteditor/texteditor_p.h \
texteditor/texteditoractionhandler.h \
texteditor/texteditorconstants.h \
texteditor/texteditoroptionspage.h \
texteditor/texteditoroverlay.h \
texteditor/texteditorplugin.h \
texteditor/texteditorsettings.h \
texteditor/textmark.h \
texteditor/textmarkregistry.h \
texteditor/typingsettings.h \
utils/theme/theme.h \
utils/tooltip/tooltip.h \
utils/algorithm.h \
utils/annotateditemdelegate.h \
utils/ansiescapecodehandler.h \
utils/appmainwindow.h \
utils/basetreeview.h \
utils/bracematcher.h \
utils/buildablehelperlibrary.h \
utils/categorysortfiltermodel.h \
utils/changeset.h \
utils/checkablemessagebox.h \
utils/classnamevalidatinglineedit.h \
utils/codegeneration.h \
utils/completinglineedit.h \
utils/completingtextedit.h \
utils/completingtextedit_p.h \
utils/consoleprocess.h \
utils/consoleprocess_p.h \
utils/crumblepath.h \
utils/detailsbutton.h \
utils/detailswidget.h \
utils/dropsupport.h \
utils/effects.h \
utils/elfreader.h \
utils/elidinglabel.h \
utils/environment.h \
utils/environmentmodel.h \
utils/execmenu.h \
utils/executeondestruction.h \
utils/fadingindicator.h \
utils/faketooltip.h \
utils/fancylineedit.h \
utils/fancymainwindow.h \
utils/fileinprojectfinder.h \
utils/filenamevalidatinglineedit.h \
utils/filesearch.h \
utils/filesystemwatcher.h \
utils/fileutils.h \
utils/fileutils_mac.h \
utils/filewizardpage.h \
utils/flowlayout.h \
utils/headerviewstretcher.h \
utils/historycompleter.h \
utils/hostosinfo.h \
utils/htmldocextractor.h \
utils/itemviews.h \
utils/json.h \
utils/linecolumnlabel.h \
utils/listutils.h \
utils/macroexpander.h \
utils/multitask.h \
utils/navigationtreeview.h \
utils/networkaccessmanager.h \
utils/newclasswidget.h \
utils/osspecificaspects.h \
utils/outputformat.h \
utils/outputformatter.h \
utils/overridecursor.h \
utils/parameteraction.h \
utils/pathchooser.h \
utils/pathlisteditor.h \
utils/persistentsettings.h \
utils/portlist.h \
utils/progressindicator.h \
utils/projectintropage.h \
utils/proxyaction.h \
utils/proxycredentialsdialog.h \
utils/qtcassert.h \
utils/qtcolorbutton.h \
utils/qtcprocess.h \
utils/reloadpromptutils.h \
utils/reuse.h \
utils/runextensions.h \
utils/savedaction.h \
utils/savefile.h \
utils/scopedswap.h \
utils/settingsselector.h \
utils/settingsutils.h \
utils/shellcommand.h \
utils/shellcommandpage.h \
utils/sleep.h \
utils/statuslabel.h \
utils/stringutils.h \
utils/styledbar.h \
utils/stylehelper.h \
utils/synchronousprocess.h \
utils/tcpportsgatherer.h \
utils/templateengine.h \
utils/textfieldcheckbox.h \
utils/textfieldcombobox.h \
utils/textfileformat.h \
utils/theme.h \
utils/theme_p.h \
utils/tips.h \
utils/tooltip.h \
utils/treemodel.h \
utils/treeviewcombobox.h \
utils/uncommentselection.h \
utils/unixutils.h \
utils/utils_global.h \
utils/winutils.h \
utils/wizard.h \
utils/wizardpage.h \
vcsbase/vcsbaseconstants.h \
bineditor/bineditor.h \
bineditor/bineditorconstants.h \
bineditor/bineditorplugin.h \
bineditor/markup.h \
classview/classviewconstants.h \
classview/classviewmanager.h \
classview/classviewnavigationwidget.h \
classview/classviewnavigationwidgetfactory.h \
classview/classviewparser.h \
classview/classviewparsertreeitem.h \
classview/classviewplugin.h \
classview/classviewsymbolinformation.h \
classview/classviewsymbollocation.h \
classview/classviewtreeitemmodel.h \
classview/classviewutils.h \
core/vcsbaseconstants.h \
cplusplus/AlreadyConsideredClassContainer.h \
cplusplus/AST.h \
cplusplus/ASTfwd.h \
cplusplus/ASTMatcher.h \
cplusplus/ASTParent.h \
cplusplus/ASTPath.h \
cplusplus/ASTPatternBuilder.h \
cplusplus/ASTVisitor.h \
cplusplus/BackwardsScanner.h \
cplusplus/Bind.h \
cplusplus/Control.h \
cplusplus/CoreTypes.h \
cplusplus/CPlusPlus.h \
cplusplus/CPlusPlusForwardDeclarations.h \
cplusplus/cppassert.h \
cplusplus/CppDocument.h \
cplusplus/cppmodelmanagerbase.h \
cplusplus/CppRewriter.h \
cplusplus/DependencyTable.h \
cplusplus/DeprecatedGenTemplateInstance.h \
cplusplus/DiagnosticClient.h \
cplusplus/ExpressionUnderCursor.h \
cplusplus/FastPreprocessor.h \
cplusplus/findcdbbreakpoint.h \
cplusplus/FindUsages.h \
cplusplus/FullySpecifiedType.h \
cplusplus/Icons.h \
cplusplus/Lexer.h \
cplusplus/Literals.h \
cplusplus/LiteralTable.h \
cplusplus/LookupContext.h \
cplusplus/LookupItem.h \
cplusplus/Macro.h \
cplusplus/Matcher.h \
cplusplus/MatchingText.h \
cplusplus/MemoryPool.h \
cplusplus/Name.h \
cplusplus/NamePrettyPrinter.h \
cplusplus/Names.h \
cplusplus/NameVisitor.h \
cplusplus/ObjectiveCTypeQualifiers.h \
cplusplus/Overview.h \
cplusplus/OverviewModel.h \
cplusplus/Parser.h \
cplusplus/pp-cctype.h \
cplusplus/pp-engine.h \
cplusplus/pp-scanner.h \
cplusplus/pp.h \
cplusplus/PPToken.h \
cplusplus/PreprocessorClient.h \
cplusplus/PreprocessorEnvironment.h \
cplusplus/QtContextKeywords.h \
cplusplus/ResolveExpression.h \
cplusplus/SafeMatcher.h \
cplusplus/Scope.h \
cplusplus/SimpleLexer.h \
cplusplus/SnapshotSymbolVisitor.h \
cplusplus/Symbol.h \
cplusplus/SymbolNameVisitor.h \
cplusplus/Symbols.h \
cplusplus/SymbolVisitor.h \
cplusplus/Templates.h \
cplusplus/Token.h \
cplusplus/TranslationUnit.h \
cplusplus/Type.h \
cplusplus/TypeOfExpression.h \
cplusplus/TypePrettyPrinter.h \
cplusplus/TypeVisitor.h \
cppeditor/cppautocompleter.h \
cppeditor/cppcanonicalsymbol.h \
cppeditor/cppcodemodelinspectordialog.h \
cppeditor/cppdocumentationcommenthelper.h \
cppeditor/cppdoxygen_test.h \
cppeditor/cppeditor.h \
cppeditor/cppeditor_global.h \
cppeditor/cppeditorconstants.h \
cppeditor/cppeditordocument.h \
cppeditor/cppeditorenums.h \
cppeditor/cppeditorplugin.h \
cppeditor/cppeditortestcase.h \
cppeditor/cppelementevaluator.h \
cppeditor/cppfollowsymbolundercursor.h \
cppeditor/cppfunctiondecldeflink.h \
cppeditor/cpphighlighter.h \
cppeditor/cpphoverhandler.h \
cppeditor/cppincludehierarchy.h \
cppeditor/cppincludehierarchyitem.h \
cppeditor/cppincludehierarchymodel.h \
cppeditor/cppincludehierarchytreeview.h \
cppeditor/cppinsertvirtualmethods.h \
cppeditor/cpplocalrenaming.h \
cppeditor/cppoutline.h \
cppeditor/cpppreprocessordialog.h \
cppeditor/cppquickfix.h \
cppeditor/cppquickfix_test.h \
cppeditor/cppquickfixassistant.h \
cppeditor/cppquickfixes.h \
cppeditor/cppsnippetprovider.h \
cppeditor/cpptypehierarchy.h \
cppeditor/cppuseselectionsupdater.h \
cppeditor/cppvirtualfunctionassistprovider.h \
cppeditor/cppvirtualfunctionproposalitem.h \
cpptools/abstracteditorsupport.h \
cpptools/baseeditordocumentparser.h \
cpptools/baseeditordocumentprocessor.h \
cpptools/builtineditordocumentparser.h \
cpptools/builtineditordocumentprocessor.h \
cpptools/builtinindexingsupport.h \
cpptools/commentssettings.h \
cpptools/completionsettingspage.h \
cpptools/cppchecksymbols.h \
cpptools/cppclassesfilter.h \
cpptools/cppcodeformatter.h \
cpptools/cppcodemodelinspectordumper.h \
cpptools/cppcodemodelsettings.h \
cpptools/cppcodemodelsettingspage.h \
cpptools/cppcodestylepreferences.h \
cpptools/cppcodestylepreferencesfactory.h \
cpptools/cppcodestylesettings.h \
cpptools/cppcodestylesettingspage.h \
cpptools/cppcompletionassist.h \
cpptools/cppcompletionassistprocessor.h \
cpptools/cppcompletionassistprovider.h \
cpptools/cppcurrentdocumentfilter.h \
cpptools/cppdoxygen.h \
cpptools/cppeditoroutline.h \
cpptools/cppfileiterationorder.h \
cpptools/cppfilesettingspage.h \
cpptools/cppfindreferences.h \
cpptools/cppfunctionsfilter.h \
cpptools/cppincludesfilter.h \
cpptools/cppindexingsupport.h \
cpptools/cpplocalsymbols.h \
cpptools/cpplocatordata.h \
cpptools/cpplocatorfilter.h \
cpptools/cppmodelmanager.h \
cpptools/cppmodelmanagersupport.h \
cpptools/cppmodelmanagersupportinternal.h \
cpptools/cpppointerdeclarationformatter.h \
cpptools/cppprojectfile.h \
cpptools/cppprojects.h \
cpptools/cppqtstyleindenter.h \
cpptools/cpprefactoringchanges.h \
cpptools/cppsemanticinfo.h \
cpptools/cppsemanticinfoupdater.h \
cpptools/cppsourceprocessertesthelper.h \
cpptools/cppsourceprocessor.h \
cpptools/cpptools_global.h \
cpptools/cpptoolsjsextension.h \
cpptools/cpptoolsplugin.h \
cpptools/cpptoolsreuse.h \
cpptools/cpptoolssettings.h \
cpptools/cpptoolstestcase.h \
cpptools/cppworkingcopy.h \
cpptools/doxygengenerator.h \
cpptools/editordocumenthandle.h \
cpptools/functionutils.h \
cpptools/includeutils.h \
cpptools/indexitem.h \
cpptools/insertionpointlocator.h \
cpptools/modelmanagertesthelper.h \
cpptools/searchsymbols.h \
cpptools/semantichighlighter.h \
cpptools/senddocumenttracker.h \
cpptools/stringtable.h \
cpptools/symbolfinder.h \
cpptools/symbolsfindfilter.h \
cpptools/typehierarchybuilder.h \
debugger/cdb/bytearrayinputstream.h \
debugger/cdb/cdbengine.h \
debugger/cdb/cdboptionspage.h \
debugger/cdb/cdbparsehelpers.h \
debugger/gdb/attachgdbadapter.h \
debugger/gdb/coregdbadapter.h \
debugger/gdb/gdbengine.h \
debugger/gdb/gdbplainengine.h \
debugger/gdb/remotegdbserveradapter.h \
debugger/gdb/startgdbserverdialog.h \
debugger/gdb/termgdbadapter.h \
debugger/lldb/lldbengine.h \
debugger/namedemangler/demanglerexceptions.h \
debugger/namedemangler/globalparsestate.h \
debugger/namedemangler/namedemangler.h \
debugger/namedemangler/parsetreenodes.h \
debugger/pdb/pdbengine.h \
debugger/shared/backtrace.h \
debugger/shared/cdbsymbolpathlisteditor.h \
debugger/shared/hostutils.h \
debugger/shared/peutils.h \
debugger/shared/symbolpathsdialog.h \
debugger/breakhandler.h \
debugger/breakpoint.h \
debugger/breakwindow.h \
debugger/commonoptionspage.h \
debugger/debugger_global.h \
debugger/debuggeractions.h \
debugger/debuggerconstants.h \
debugger/debuggercore.h \
debugger/debuggerdialogs.h \
debugger/debuggerengine.h \
debugger/debuggerinternalconstants.h \
debugger/debuggeritem.h \
debugger/debuggeritemmanager.h \
debugger/debuggerkitconfigwidget.h \
debugger/debuggerkitinformation.h \
debugger/debuggermainwindow.h \
debugger/debuggeroptionspage.h \
debugger/debuggerplugin.h \
debugger/debuggerprotocol.h \
debugger/debuggerrunconfigurationaspect.h \
debugger/debuggerruncontrol.h \
debugger/debuggersourcepathmappingwidget.h \
debugger/debuggerstartparameters.h \
debugger/debuggerstringutils.h \
debugger/debuggertooltipmanager.h \
debugger/disassembleragent.h \
debugger/disassemblerlines.h \
debugger/imageviewer.h \
debugger/loadcoredialog.h \
debugger/localsandexpressionswindow.h \
debugger/logwindow.h \
debugger/memoryagent.h \
debugger/memoryview.h \
debugger/moduleshandler.h \
debugger/moduleswindow.h \
debugger/outputcollector.h \
debugger/procinterrupt.h \
debugger/registerhandler.h \
debugger/registerpostmortemaction.h \
debugger/registerwindow.h \
debugger/simplifytype.h \
debugger/snapshothandler.h \
debugger/snapshotwindow.h \
debugger/sourceagent.h \
debugger/sourcefileshandler.h \
debugger/sourcefileswindow.h \
debugger/sourceutils.h \
debugger/stackframe.h \
debugger/stackhandler.h \
debugger/stackwindow.h \
debugger/terminal.h \
debugger/threaddata.h \
debugger/threadshandler.h \
debugger/threadswindow.h \
debugger/unstartedappwatcherdialog.h \
debugger/watchdata.h \
debugger/watchdelegatewidgets.h \
debugger/watchhandler.h \
debugger/watchutils.h \
debugger/watchwindow.h \
genericprojectmanager/filesselectionwizardpage.h \
genericprojectmanager/genericbuildconfiguration.h \
genericprojectmanager/genericmakestep.h \
genericprojectmanager/genericproject.h \
genericprojectmanager/genericprojectconstants.h \
genericprojectmanager/genericprojectfileseditor.h \
genericprojectmanager/genericprojectmanager.h \
genericprojectmanager/genericprojectnodes.h \
genericprojectmanager/genericprojectplugin.h \
genericprojectmanager/genericprojectwizard.h \
projectexplorer/devicesupport/desktopdevice.h \
projectexplorer/devicesupport/desktopdeviceconfigurationwidget.h \
projectexplorer/devicesupport/desktopdevicefactory.h \
projectexplorer/devicesupport/desktopdeviceprocess.h \
projectexplorer/devicesupport/desktopprocesssignaloperation.h \
projectexplorer/devicesupport/deviceapplicationrunner.h \
projectexplorer/devicesupport/devicecheckbuildstep.h \
projectexplorer/devicesupport/devicefactoryselectiondialog.h \
projectexplorer/devicesupport/devicemanager.h \
projectexplorer/devicesupport/devicemanagermodel.h \
projectexplorer/devicesupport/deviceprocess.h \
projectexplorer/devicesupport/deviceprocessesdialog.h \
projectexplorer/devicesupport/deviceprocesslist.h \
projectexplorer/devicesupport/devicesettingspage.h \
projectexplorer/devicesupport/devicesettingswidget.h \
projectexplorer/devicesupport/devicetestdialog.h \
projectexplorer/devicesupport/deviceusedportsgatherer.h \
projectexplorer/devicesupport/idevice.h \
projectexplorer/devicesupport/idevicefactory.h \
projectexplorer/devicesupport/idevicewidget.h \
projectexplorer/devicesupport/localprocesslist.h \
utils/mimetypes/mimedatabase.h \
utils/mimetypes/mimedatabase_p.h \
utils/mimetypes/mimeglobpattern_p.h \
utils/mimetypes/mimemagicrule_p.h \
utils/mimetypes/mimemagicrulematcher_p.h \
utils/mimetypes/mimeprovider_p.h \
utils/mimetypes/mimetype.h \
utils/mimetypes/mimetype_p.h \
utils/mimetypes/mimetypeparser_p.h \
busy/busyapi.h \
busy/busyLexer.h \
busy/busySynTree.h \
busy/busyToken.h \
busy/busyTokenType.h \
busy/Parser.h \
busyprojectmanager/Versteck/qbs/api/changeset.h \
busyprojectmanager/Versteck/qbs/api/internaljobs.h \
busyprojectmanager/Versteck/qbs/api/jobs.h \
busyprojectmanager/Versteck/qbs/api/languageinfo.h \
busyprojectmanager/Versteck/qbs/api/project.h \
busyprojectmanager/Versteck/qbs/api/project_p.h \
busyprojectmanager/Versteck/qbs/api/projectdata.h \
busyprojectmanager/Versteck/qbs/api/projectdata_p.h \
busyprojectmanager/Versteck/qbs/api/projectfileupdater.h \
busyprojectmanager/Versteck/qbs/api/propertymap_p.h \
busyprojectmanager/Versteck/qbs/api/qmljsrewriter.h \
busyprojectmanager/Versteck/qbs/api/rulecommand.h \
busyprojectmanager/Versteck/qbs/api/rulecommand_p.h \
busyprojectmanager/Versteck/qbs/api/runenvironment.h \
busyprojectmanager/Versteck/qbs/buildgraph/abstractcommandexecutor.h \
busyprojectmanager/Versteck/qbs/buildgraph/artifact.h \
busyprojectmanager/Versteck/qbs/buildgraph/artifactcleaner.h \
busyprojectmanager/Versteck/qbs/buildgraph/artifactset.h \
busyprojectmanager/Versteck/qbs/buildgraph/artifactvisitor.h \
busyprojectmanager/Versteck/qbs/buildgraph/buildgraph.h \
busyprojectmanager/Versteck/qbs/buildgraph/buildgraphloader.h \
busyprojectmanager/Versteck/qbs/buildgraph/buildgraphnode.h \
busyprojectmanager/Versteck/qbs/buildgraph/buildgraphvisitor.h \
busyprojectmanager/Versteck/qbs/buildgraph/command.h \
busyprojectmanager/Versteck/qbs/buildgraph/cycledetector.h \
busyprojectmanager/Versteck/qbs/buildgraph/depscanner.h \
busyprojectmanager/Versteck/qbs/buildgraph/emptydirectoriesremover.h \
busyprojectmanager/Versteck/qbs/buildgraph/executor.h \
busyprojectmanager/Versteck/qbs/buildgraph/executorjob.h \
busyprojectmanager/Versteck/qbs/buildgraph/filedependency.h \
busyprojectmanager/Versteck/qbs/buildgraph/forward_decls.h \
busyprojectmanager/Versteck/qbs/buildgraph/inputartifactscanner.h \
busyprojectmanager/Versteck/qbs/buildgraph/jscommandexecutor.h \
busyprojectmanager/Versteck/qbs/buildgraph/nodeset.h \
busyprojectmanager/Versteck/qbs/buildgraph/nodetreedumper.h \
busyprojectmanager/Versteck/qbs/buildgraph/processcommandexecutor.h \
busyprojectmanager/Versteck/qbs/buildgraph/productbuilddata.h \
busyprojectmanager/Versteck/qbs/buildgraph/productinstaller.h \
busyprojectmanager/Versteck/qbs/buildgraph/projectbuilddata.h \
busyprojectmanager/Versteck/qbs/buildgraph/qtmocscanner.h \
busyprojectmanager/Versteck/qbs/buildgraph/rescuableartifactdata.h \
busyprojectmanager/Versteck/qbs/buildgraph/rulegraph.h \
busyprojectmanager/Versteck/qbs/buildgraph/rulenode.h \
busyprojectmanager/Versteck/qbs/buildgraph/rulesapplicator.h \
busyprojectmanager/Versteck/qbs/buildgraph/rulesevaluationcontext.h \
busyprojectmanager/Versteck/qbs/buildgraph/scanresultcache.h \
busyprojectmanager/Versteck/qbs/buildgraph/timestampsupdater.h \
busyprojectmanager/Versteck/qbs/buildgraph/transformer.h \
busyprojectmanager/Versteck/qbs/buildgraph/tst_buildgraph.h \
busyprojectmanager/Versteck/qbs/generators/generator.h \
busyprojectmanager/Versteck/qbs/jsextensions/domxml.h \
busyprojectmanager/Versteck/qbs/jsextensions/file.h \
busyprojectmanager/Versteck/qbs/jsextensions/jsextensions.h \
busyprojectmanager/Versteck/qbs/jsextensions/moduleproperties.h \
busyprojectmanager/Versteck/qbs/jsextensions/process.h \
busyprojectmanager/Versteck/qbs/jsextensions/propertylist.h \
busyprojectmanager/Versteck/qbs/jsextensions/propertylistutils.h \
busyprojectmanager/Versteck/qbs/jsextensions/temporarydir.h \
busyprojectmanager/Versteck/qbs/jsextensions/textfile.h \
busyprojectmanager/Versteck/qbs/language/artifactproperties.h \
busyprojectmanager/Versteck/qbs/language/asttools.h \
busyprojectmanager/Versteck/qbs/language/builtindeclarations.h \
busyprojectmanager/Versteck/qbs/language/builtinvalue.h \
busyprojectmanager/Versteck/qbs/language/deprecationinfo.h \
busyprojectmanager/Versteck/qbs/language/evaluationdata.h \
busyprojectmanager/Versteck/qbs/language/evaluator.h \
busyprojectmanager/Versteck/qbs/language/evaluatorscriptclass.h \
busyprojectmanager/Versteck/qbs/language/filecontext.h \
busyprojectmanager/Versteck/qbs/language/filecontextbase.h \
busyprojectmanager/Versteck/qbs/language/filetags.h \
busyprojectmanager/Versteck/qbs/language/forward_decls.h \
busyprojectmanager/Versteck/qbs/language/functiondeclaration.h \
busyprojectmanager/Versteck/qbs/language/identifiersearch.h \
busyprojectmanager/Versteck/qbs/language/item.h \
busyprojectmanager/Versteck/qbs/language/itemdeclaration.h \
busyprojectmanager/Versteck/qbs/language/itemobserver.h \
busyprojectmanager/Versteck/qbs/language/itempool.h \
busyprojectmanager/Versteck/qbs/language/itemreader.h \
busyprojectmanager/Versteck/qbs/language/itemreaderastvisitor.h \
busyprojectmanager/Versteck/qbs/language/itemreadervisitorstate.h \
busyprojectmanager/Versteck/qbs/language/jsimports.h \
busyprojectmanager/Versteck/qbs/language/language.h \
busyprojectmanager/Versteck/qbs/language/loader.h \
busyprojectmanager/Versteck/qbs/language/moduleloader.h \
busyprojectmanager/Versteck/qbs/language/modulemerger.h \
busyprojectmanager/Versteck/qbs/language/preparescriptobserver.h \
busyprojectmanager/Versteck/qbs/language/projectresolver.h \
busyprojectmanager/Versteck/qbs/language/property.h \
busyprojectmanager/Versteck/qbs/language/propertydeclaration.h \
busyprojectmanager/Versteck/qbs/language/propertymapinternal.h \
busyprojectmanager/Versteck/qbs/language/qualifiedid.h \
busyprojectmanager/Versteck/qbs/language/resolvedfilecontext.h \
busyprojectmanager/Versteck/qbs/language/scriptengine.h \
busyprojectmanager/Versteck/qbs/language/scriptpropertyobserver.h \
busyprojectmanager/Versteck/qbs/language/tst_language.h \
busyprojectmanager/Versteck/qbs/language/value.h \
busyprojectmanager/Versteck/qbs/logging/ilogsink.h \
busyprojectmanager/Versteck/qbs/logging/logger.h \
busyprojectmanager/Versteck/qbs/logging/translator.h \
busyprojectmanager/Versteck/qbs/parser/qmlerror.h \
busyprojectmanager/Versteck/qbs/parser/qmljsast_p.h \
busyprojectmanager/Versteck/qbs/parser/qmljsastfwd_p.h \
busyprojectmanager/Versteck/qbs/parser/qmljsastvisitor_p.h \
busyprojectmanager/Versteck/qbs/parser/qmljsengine_p.h \
busyprojectmanager/Versteck/qbs/parser/qmljsglobal_p.h \
busyprojectmanager/Versteck/qbs/parser/qmljsgrammar_p.h \
busyprojectmanager/Versteck/qbs/parser/qmljskeywords_p.h \
busyprojectmanager/Versteck/qbs/parser/qmljslexer_p.h \
busyprojectmanager/Versteck/qbs/parser/qmljsmemorypool_p.h \
busyprojectmanager/Versteck/qbs/parser/qmljsparser_p.h \
busyprojectmanager/Versteck/qbs/tools/architectures.h \
busyprojectmanager/Versteck/qbs/tools/buildgraphlocker.h \
busyprojectmanager/Versteck/qbs/tools/buildoptions.h \
busyprojectmanager/Versteck/qbs/tools/cleanoptions.h \
busyprojectmanager/Versteck/qbs/tools/codelocation.h \
busyprojectmanager/Versteck/qbs/tools/commandechomode.h \
busyprojectmanager/Versteck/qbs/tools/error.h \
busyprojectmanager/Versteck/qbs/tools/executablefinder.h \
busyprojectmanager/Versteck/qbs/tools/fileinfo.h \
busyprojectmanager/Versteck/qbs/tools/filetime.h \
busyprojectmanager/Versteck/qbs/tools/generateoptions.h \
busyprojectmanager/Versteck/qbs/tools/hostosinfo.h \
busyprojectmanager/Versteck/qbs/tools/id.h \
busyprojectmanager/Versteck/qbs/tools/installoptions.h \
busyprojectmanager/Versteck/qbs/tools/persistence.h \
busyprojectmanager/Versteck/qbs/tools/persistentobject.h \
busyprojectmanager/Versteck/qbs/tools/preferences.h \
busyprojectmanager/Versteck/qbs/tools/processresult.h \
busyprojectmanager/Versteck/qbs/tools/processresult_p.h \
busyprojectmanager/Versteck/qbs/tools/processutils.h \
busyprojectmanager/Versteck/qbs/tools/profile.h \
busyprojectmanager/Versteck/qbs/tools/progressobserver.h \
busyprojectmanager/Versteck/qbs/tools/projectgeneratormanager.h \
busyprojectmanager/Versteck/qbs/tools/propertyfinder.h \
busyprojectmanager/Versteck/qbs/tools/qbs_export.h \
busyprojectmanager/Versteck/qbs/tools/qbsassert.h \
busyprojectmanager/Versteck/qbs/tools/qttools.h \
busyprojectmanager/Versteck/qbs/tools/scannerpluginmanager.h \
busyprojectmanager/Versteck/qbs/tools/scripttools.h \
busyprojectmanager/Versteck/qbs/tools/settings.h \
busyprojectmanager/Versteck/qbs/tools/settingsmodel.h \
busyprojectmanager/Versteck/qbs/tools/setupprojectparameters.h \
busyprojectmanager/Versteck/qbs/tools/shellutils.h \
busyprojectmanager/Versteck/qbs/tools/tst_tools.h \
busyprojectmanager/Versteck/qbs/tools/version.h \
busyprojectmanager/Versteck/qbs/tools/weakpointer.h \
busyprojectmanager/Versteck/qbs/qbs.h \