-
Notifications
You must be signed in to change notification settings - Fork 35
/
Kactus2.pri
1700 lines (1697 loc) · 106 KB
/
Kactus2.pri
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
# ----------------------------------------------------
# This file is generated by the Qt Visual Studio Tools.
# ------------------------------------------------------
# This is a reminder that you are using a generated .pro file.
# Remove it when you are finished editing this file.
message("You are running qmake on a generated .pro file. This may not work!")
HEADERS += ./common/NameGenerationPolicy.h \
./common/KactusColors.h \
./common/TextEditProvider.h \
./common/IEditProvider.h \
./common/GenericEditProvider.h \
./common/widgets/listManager/dirlistmanagermodel.h \
./common/widgets/listManager/listmanagermodel.h \
./common/widgets/listManager/listmanager.h \
./common/widgets/listManager/listeditor.h \
./common/widgets/listManager/dirlistmanager.h \
./common/widgets/nameGroupBox/namegroupbox.h \
./common/widgets/assistedLineEdit/BasicLineContentMatcher.h \
./common/widgets/assistedLineEdit/ILineContentMatcher.h \
./common/widgets/assistedLineEdit/LineContentAssistWidget.h \
./common/widgets/assistedLineEdit/AssistedLineEdit.h \
./common/widgets/vlnvDisplayer/vlnvdisplayer.h \
./common/widgets/booleanComboBox/booleancombobox.h \
./common/widgets/tabDocument/TabDocument.h \
./common/widgets/assistedTextEdit/HighlightStyleDesc.h \
./common/widgets/assistedTextEdit/ITextContentMatcher.h \
./common/widgets/assistedTextEdit/TextContentAssistWidget.h \
./common/widgets/assistedTextEdit/ToolTipHintWidget.h \
./common/widgets/assistedTextEdit/AssistedTextEdit.h \
./common/widgets/vlnvEditor/VLNVContentMatcher.h \
./common/widgets/vlnvEditor/VLNVDataTree.h \
./common/widgets/vlnvEditor/vlnveditor.h \
./common/widgets/colorBox/ColorBox.h \
./common/widgets/kactusAttributeEditor/KactusAttributeEditor.h \
./common/widgets/componentPreviewBox/ComponentPreviewBox.h \
./common/widgets/ParameterGroupBox/parametergroupbox.h \
./common/widgets/nameGroupEditor/namegroupeditor.h \
./common/widgets/summaryLabel/summarylabel.h \
./common/widgets/interfaceModeSelector/interfacemodeselector.h \
./common/widgets/interfaceSelector/interfaceselector.h \
./common/widgets/LineEditEx/LineEditEx.h \
./common/widgets/SnippetTextEdit/SnippetHighlighter.h \
./common/widgets/SnippetTextEdit/SnippetTextEdit.h \
./common/widgets/usageComboBox/usagecombobox.h \
./common/widgets/accessComboBox/accesscombobox.h \
./common/widgets/modWriteComboBox/modwritecombobox.h \
./common/widgets/readActionComboBox/readactioncombobox.h \
./common/widgets/testConstraintComboBox/testconstraintcombobox.h \
./common/widgets/viewSelector/viewselector.h \
./common/widgets/fileTypeSelector/filetypeselector.h \
./common/widgets/EnumCollectionEditor/EnumerationEditor.h \
./common/widgets/EnumCollectionEditor/EnumCollectionEditor.h \
./common/widgets/FileSelector/fileselector.h \
./common/widgets/LibrarySelectorWidget/LibrarySelectorWidget.h \
./common/widgets/LibrarySelectorWidget/LibraryPathEditor/librarypatheditor.h \
./common/widgets/LibrarySelectorWidget/LibraryPathSelector/librarypathselector.h \
./common/widgets/DirectoryListSelector/DirectoryListSelector.h \
./common/widgets/tagEditor/FlowLayout.h \
./common/widgets/tagEditor/TagLabel.h \
./common/widgets/tagEditor/TagContainer.h \
./common/widgets/tagEditor/TagEditor.h \
./common/widgets/tagEditor/TagCompleterModel.h \
./common/widgets/tagEditor/TagEditorContainer.h \
./common/widgets/tagEditor/TagDisplay.h \
./common/widgets/tagEditor/TagSelectorContainer.h \
./common/widgets/tagEditor/TagSelector.h \
./common/widgets/busReferenceComboBox/BusReferenceComboBox.h \
./common/widgets/segmentComboBox/SegmentComboBox.h \
./common/widgets/TreeItemSelector/TreeItem.h \
./common/widgets/TreeItemSelector/TreeItemEditor.h \
./common/widgets/TreeItemSelector/TreeItemModel.h \
./common/widgets/TreeItemSelector/FramedTreeItemEditor.h \
./common/widgets/GroupBoxWithAlertSign/StyleOptionGroupBoxWithAlertSign.h \
./common/widgets/GroupBoxWithAlertSign/GroupBoxWithAlertSign.h \
./common/widgets/GroupBoxWithAlertSign/StyleGroupBoxWithAlertSign.h \
./common/validators/LibraryPathValidator/librarypathvalidator.h \
./common/layouts/HCollisionLayout.h \
./common/layouts/HStackedLayout.h \
./common/layouts/IHGraphicsLayout.h \
./common/layouts/IVGraphicsLayout.h \
./common/layouts/VCollisionLayout.h \
./common/layouts/VStackedLayout.h \
./common/layouts/VStaticLayout.h \
./common/graphicsItems/ConnectionItem.h \
./common/graphicsItems/GraphicsColumnAddCommand.h \
./common/graphicsItems/ConnectionUndoCommands.h \
./common/graphicsItems/GraphicsColumnUndoCommands.h \
./common/graphicsItems/GraphicsItemTypes.h \
./common/graphicsItems/IGraphicsItemStack.h \
./common/graphicsItems/GraphicsColumnConstants.h \
./common/graphicsItems/CommonGraphicsUndoCommands.h \
./common/graphicsItems/visualizeritem.h \
./common/graphicsItems/GraphicsRectButton.h \
./common/graphicsItems/GraphicsLineEdit.h \
./common/graphicsItems/graphicsexpandcollapseitem.h \
./common/graphicsItems/GraphicsConnection.h \
./common/graphicsItems/GraphicsColumnLayout.h \
./common/graphicsItems/GraphicsColumn.h \
./common/graphicsItems/expandableitem.h \
./common/graphicsItems/ConnectionEndpoint.h \
./common/graphicsItems/ComponentItem.h \
./common/delegates/ComboDelegate/combodelegate.h \
./common/delegates/LineEditDelegate/lineeditdelegate.h \
./common/views/EditableTableView/editabletableview.h \
./common/views/EditableListView/editablelistview.h \
./common/views/EditableTreeView/EditableTreeView.h \
./common/views/EditableTreeView/EditableTreeSortFilter.h \
./common/views/ExpandingTreeView/ExpandingTreeView.h \
./common/dialogs/comboSelector/comboselector.h \
./common/dialogs/propertyPageDialog/PropertyPageView.h \
./common/dialogs/propertyPageDialog/PropertyPageDialog.h \
./common/dialogs/newObjectDialog/newobjectdialog.h \
./common/dialogs/listSelectDialog/ListSelectDialog.h \
./common/dialogs/NewDesignDialog/NewDesignDialog.h \
./common/dialogs/LibrarySettingsDialog/LibrarySettingsColumns.h \
./common/dialogs/LibrarySettingsDialog/librarysettingsdelegate.h \
./common/dialogs/LibrarySettingsDialog/LibrarySettingsDialog.h \
./common/dialogs/createConfigurationDialog/createconfigurationdialog.h \
./common/dialogs/NewBusDialog/NewBusDialog.h \
./common/ui/GraphicalMessageMediator.h \
./common/expressions/utilities.h \
./mainwindow/CommandLineParser.h \
./mainwindow/SplashScreen.h \
./mainwindow/DockWidgetHandler.h \
./mainwindow/WorkspaceSettings.h \
./mainwindow/NewWorkspaceDialog.h \
./mainwindow/DeleteWorkspaceDialog.h \
./mainwindow/mainwindow.h \
./mainwindow/MessageConsole/messageconsole.h \
./mainwindow/Ribbon/RibbonTheme.h \
./mainwindow/Ribbon/Ribbon.h \
./mainwindow/Ribbon/RibbonGroup.h \
./mainwindow/NewPages/NewCatalogPage.h \
./mainwindow/NewPages/NewApiDefinitionPage.h \
./mainwindow/NewPages/NewBusDefinitionPage.h \
./mainwindow/NewPages/NewComDefinitionPage.h \
./mainwindow/NewPages/NewComponentPage.h \
./mainwindow/NewPages/NewDesignPage.h \
./mainwindow/NewPages/NewPage.h \
./mainwindow/NewPages/NewSWComponentPage.h \
./mainwindow/NewPages/NewSWDesignPage.h \
./mainwindow/NewPages/NewSystemPage.h \
./mainwindow/DrawingBoard/DrawingBoard.h \
./mainwindow/SaveHierarchy/DocumentTreeBuilder.h \
./mainwindow/SaveHierarchy/HierarchicalSaveColumns.h \
./mainwindow/SaveHierarchy/SaveAsItem.h \
./mainwindow/SaveHierarchy/SaveHierarchyDelegate.h \
./mainwindow/SaveHierarchy/HierarchicalSaveBuildStrategy.h \
./mainwindow/SaveHierarchy/SaveHierarchyDialog.h \
./settings/FileTypeColumns.h \
./settings/SettingsUpdater.h \
./settings/ComponentEditorSettingsPage.h \
./settings/NewPluginsDialog.h \
./settings/SettingsPage.h \
./settings/PluginSettingsPage.h \
./settings/FileTypeSettingsPage.h \
./settings/FileTypesModel.h \
./settings/FileTypesDelegate.h \
./settings/filetypesview.h \
./settings/k2envvariablesettingspage.h \
./settings/k2envvarmodel.h \
./settings/SettingsDialog.h \
./settings/NamingPolicySettingsPage.h \
./settings/GeneralSettingsPage.h \
./settings/CodeEditorSettingsPage.h \
./wizards/ComponentWizard/ComponentWizardDependencyPage.h \
./wizards/ComponentWizard/ComponentWizardIntroPage.h \
./wizards/ComponentWizard/ComponentWizardPages.h \
./wizards/ComponentWizard/InstanceData.h \
./wizards/ComponentWizard/ImportEditor.h \
./wizards/ComponentWizard/ViewListModel.h \
./wizards/ComponentWizard/ComponentWizardViewsPage.h \
./wizards/ComponentWizard/ComponentWizard.h \
./wizards/ComponentWizard/ComponentWizardConclusionPage.h \
./wizards/ComponentWizard/ComponentWizardImportPage.h \
./wizards/ComponentWizard/ComponentWizardGeneralInfoPage.h \
./wizards/BusInterfaceWizard/BusInterfaceWizardBusDefinitionPage.h \
./wizards/BusInterfaceWizard/BusInterfaceWizard.h \
./wizards/BusInterfaceWizard/BusInterfaceWizardAbsDefinitionPage.h \
./wizards/BusInterfaceWizard/BusInterfaceWizardConclusionPage.h \
./wizards/BusInterfaceWizard/BusInterfaceWizardGeneralOptionsPage.h \
./wizards/BusInterfaceWizard/BusInterfaceWizardIntroPage.h \
./wizards/BusInterfaceWizard/BusInterfaceWizardPortMapPage.h \
./wizards/ImportWizard/ImportWizardIntroPage.h \
./wizards/ImportWizard/ImportWizardPages.h \
./wizards/ImportWizard/ImportWizardInstancesPage.h \
./wizards/ImportWizard/ImportWizardImportPage.h \
./wizards/ImportWizard/ImportWizard.h \
./wizards/ImportWizard/ImportInstancesEditor/ImportInstancesColumns.h \
./wizards/ImportWizard/ImportInstancesEditor/ImportInstancesEditor.h \
./wizards/ImportWizard/ImportInstancesEditor/ImportInstancesDelegate.h \
./wizards/common/IPXactDiff.h \
./wizards/common/IPXactElementComparator.h \
./wizards/common/ListComparator.h \
./wizards/common/ComponentComparator/ComponentComparator.h \
./wizards/common/ComponentDiffWidget/ComponentDiffWidget.h \
./wizards/common/VLNVComparator/VLNVComparator.h \
./wizards/common/ViewComparator/ViewComparator.h \
./wizards/common/PortComparator/PortComparator.h \
./wizards/common/ParameterComparator/ParameterComparator.h \
./wizards/common/ModuleParameterComparator/ModuleParameterComparator.h \
./Help/HelpSystem/HelpWindow.h \
./Help/HelpSystem/ContextHelpBrowser.h \
./Help/HelpSystem/HelpSearchWidget.h \
./Plugins/common/ConnectivityGraphUtilities.h \
./Plugins/common/CpuRoutesContainer.h \
./Plugins/common/SingleCpuRoutesContainer.h \
./Plugins/common/SourceHighlightStyle.h \
./Plugins/common/LanguageHighlighter.h \
./library/LibraryInterface.h \
./library/LibraryItemSelectionFactory.h \
./library/LibraryUtils.h \
./library/ObjectSelectionListItem.h \
./library/TableViewDialog.h \
./library/LibraryFilter.h \
./library/LibraryErrorModel.h \
./library/ItemExporter.h \
./library/LibraryTreeFilter.h \
./library/LibraryTreeWidget.h \
./library/LibraryTreeView.h \
./library/LibraryWidget.h \
./library/objectremovedialog.h \
./library/ObjectSelectionDialog.h \
./library/ObjectExportDialog.h \
./library/VLNVDialer/filterwidget.h \
./library/VLNVDialer/firmnessgroup.h \
./library/VLNVDialer/hierarchygroup.h \
./library/VLNVDialer/implementationgroup.h \
./library/VLNVDialer/typegroup.h \
./library/VLNVDialer/vlnvdialer.h \
./library/VLNVDialer/FilterGroup.h \
./library/VLNVDialer/ValidityGroup.h \
./library/VLNVDialer/RevisionGroup.h \
./library/HierarchyView/hierarchywidget.h \
./library/HierarchyView/hierarchyview.h \
./library/HierarchyView/hierarchyfilter.h \
./editors/ApiDefinitionEditor/ApiFunctionColumns.h \
./editors/ApiDefinitionEditor/ApiDefinitionEditor.h \
./editors/ApiDefinitionEditor/ApiFunctionEditor.h \
./editors/ApiDefinitionEditor/ApiFunctionModel.h \
./editors/ApiDefinitionEditor/ApiFunctionParameterDelegate.h \
./editors/ApiDefinitionEditor/ApiFunctionParameterModel.h \
./editors/ComDefinitionEditor/ComPropertyColumns.h \
./editors/ComDefinitionEditor/ComDefinitionEditor.h \
./editors/ComDefinitionEditor/ComPropertyDelegate.h \
./editors/ComDefinitionEditor/ComPropertyEditor.h \
./editors/ComDefinitionEditor/ComPropertyModel.h \
./editors/ComponentEditor/ParameterItemEditor.h \
./editors/ComponentEditor/componenteditor.h \
./editors/ComponentEditor/itemeditor.h \
./editors/ComponentEditor/itemvisualizer.h \
./editors/ComponentEditor/general/generaleditor.h \
./editors/ComponentEditor/ports/PortsEditorFactory.h \
./editors/ComponentEditor/ports/PortSummaryColumns.h \
./editors/ComponentEditor/ports/PortSummaryEditorFactory.h \
./editors/ComponentEditor/ports/PortTypeDefinitionDelegate.h \
./editors/ComponentEditor/ports/PortWireTypeColumns.h \
./editors/ComponentEditor/ports/TransactionalPortColumns.h \
./editors/ComponentEditor/ports/TransactionalPortsEditorFactory.h \
./editors/ComponentEditor/ports/WirePortColumns.h \
./editors/ComponentEditor/ports/WirePortsEditorFactory.h \
./editors/ComponentEditor/ports/MasterPortsEditor.h \
./editors/ComponentEditor/ports/PortTagEditorDelegate.h \
./editors/ComponentEditor/ports/PortWireTypeEditor.h \
./editors/ComponentEditor/ports/PortWireTypeModel.h \
./editors/ComponentEditor/ports/PortWireTypeDelegate.h \
./editors/ComponentEditor/ports/PortsFilter.h \
./editors/ComponentEditor/ports/PortSummaryModel.h \
./editors/ComponentEditor/ports/PortSummaryFilter.h \
./editors/ComponentEditor/ports/PortSummaryDelegate.h \
./editors/ComponentEditor/ports/PortSummaryView.h \
./editors/ComponentEditor/ports/PortTypeDefinitionEditor.h \
./editors/ComponentEditor/ports/PortWireTypeView.h \
./editors/ComponentEditor/ports/TransactionalPortsDelegate.h \
./editors/ComponentEditor/ports/TransactionalPortsModel.h \
./editors/ComponentEditor/ports/TransactionalPortsFilter.h \
./editors/ComponentEditor/ports/TypedPortEditor.h \
./editors/ComponentEditor/ports/WirePortsModel.h \
./editors/ComponentEditor/ports/WirePortsFilter.h \
./editors/ComponentEditor/ports/WirePortsDelegate.h \
./editors/ComponentEditor/ports/TypedPortsView.h \
./editors/ComponentEditor/ports/portsdelegate.h \
./editors/ComponentEditor/ports/portseditor.h \
./editors/ComponentEditor/ports/portsmodel.h \
./editors/ComponentEditor/ports/PortsView.h \
./editors/ComponentEditor/parameters/ComponentParameterColumns.h \
./editors/ComponentEditor/parameters/ParameterColumns.h \
./editors/ComponentEditor/parameters/ParameterEditorHeaderView.h \
./editors/ComponentEditor/parameters/parametersmodel.h \
./editors/ComponentEditor/parameters/ComponentParameterModel.h \
./editors/ComponentEditor/parameters/ChoiceCreatorDelegate.h \
./editors/ComponentEditor/parameters/ParameterDelegate.h \
./editors/ComponentEditor/parameters/ParametersView.h \
./editors/ComponentEditor/parameters/parameterseditor.h \
./editors/ComponentEditor/parameters/Array/ArrayColumns.h \
./editors/ComponentEditor/parameters/Array/ArrayDelegate.h \
./editors/ComponentEditor/parameters/Array/ParameterArrayModel.h \
./editors/ComponentEditor/parameters/Array/ArrayView.h \
./editors/ComponentEditor/otherClockDrivers/OtherClockDriverColumns.h \
./editors/ComponentEditor/otherClockDrivers/otherclockdriversmodel.h \
./editors/ComponentEditor/otherClockDrivers/clockdriversdelegate.h \
./editors/ComponentEditor/otherClockDrivers/otherclockdriverseditor.h \
./editors/ComponentEditor/channels/ChannelColumns.h \
./editors/ComponentEditor/channels/channelsdelegate.h \
./editors/ComponentEditor/channels/channelseditor.h \
./editors/ComponentEditor/channels/channelsmodel.h \
./editors/ComponentEditor/busInterfaces/AbstractionTypesConstants.h \
./editors/ComponentEditor/busInterfaces/BusInterfaceColumns.h \
./editors/ComponentEditor/busInterfaces/AbstractionTypesEditor.h \
./editors/ComponentEditor/busInterfaces/AbstractionTypesModel.h \
./editors/ComponentEditor/busInterfaces/AbstractionTypesDelegate.h \
./editors/ComponentEditor/busInterfaces/businterfaceeditor.h \
./editors/ComponentEditor/busInterfaces/businterfacesdelegate.h \
./editors/ComponentEditor/busInterfaces/businterfaceseditor.h \
./editors/ComponentEditor/busInterfaces/businterfacesmodel.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMapHeaderView.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMappingColumns.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMapsColumns.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMapSortFilter.h \
./editors/ComponentEditor/busInterfaces/portmaps/JaroWinklerAlgorithm.h \
./editors/ComponentEditor/busInterfaces/portmaps/PhysicalPortMappingTableView.h \
./editors/ComponentEditor/busInterfaces/portmaps/PhysicalPortMappingTableModel.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMapAutoConnector.h \
./editors/ComponentEditor/busInterfaces/portmaps/BusInterfacePortMapTab.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMapDelegate.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMapModel.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMappingTableView.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMappingTableModel.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortMapView.h \
./editors/ComponentEditor/busInterfaces/portmaps/PortListSortProxyModel.h \
./editors/ComponentEditor/busInterfaces/general/BridgeColumns.h \
./editors/ComponentEditor/busInterfaces/general/MirroredInitiatorModeEditor.h \
./editors/ComponentEditor/busInterfaces/general/MirroredMasterModeEditor.h \
./editors/ComponentEditor/busInterfaces/general/bridgesdelegate.h \
./editors/ComponentEditor/busInterfaces/general/bridgeseditor.h \
./editors/ComponentEditor/busInterfaces/general/bridgesmodel.h \
./editors/ComponentEditor/busInterfaces/general/busifgeneraldetails.h \
./editors/ComponentEditor/busInterfaces/general/busifgeneraltab.h \
./editors/ComponentEditor/busInterfaces/general/interfacemodestack.h \
./editors/ComponentEditor/busInterfaces/general/MasterModeEditor.h \
./editors/ComponentEditor/busInterfaces/general/ModeEditorBase.h \
./editors/ComponentEditor/busInterfaces/general/SlaveModeEditor.h \
./editors/ComponentEditor/busInterfaces/general/MirroredSlaveModeEditor.h \
./editors/ComponentEditor/busInterfaces/general/InitiatorModeEditor.h \
./editors/ComponentEditor/busInterfaces/general/MonitorModeEditor.h \
./editors/ComponentEditor/busInterfaces/general/SystemModeEditor.h \
./editors/ComponentEditor/busInterfaces/general/TargetModeEditor.h \
./editors/ComponentEditor/busInterfaces/general/MirroredTargetModeEditor.h \
./editors/ComponentEditor/fileBuilders/FileBuilderColumns.h \
./editors/ComponentEditor/fileBuilders/filebuildersdelegate.h \
./editors/ComponentEditor/fileBuilders/filebuilderseditor.h \
./editors/ComponentEditor/fileBuilders/filebuildersmodel.h \
./editors/ComponentEditor/software/PropertyValueModel.h \
./editors/ComponentEditor/software/SWPropertiesEditor.h \
./editors/ComponentEditor/software/PropertyValueDelegate.h \
./editors/ComponentEditor/software/PropertyValueEditor.h \
./editors/ComponentEditor/software/apiInterface/ApiInterfaceColumns.h \
./editors/ComponentEditor/software/apiInterface/apiinterfaceseditor.h \
./editors/ComponentEditor/software/apiInterface/apiinterfacesmodel.h \
./editors/ComponentEditor/software/apiInterface/ApiInterfaceEditor.h \
./editors/ComponentEditor/software/apiInterface/apiinterfacesdelegate.h \
./editors/ComponentEditor/software/comInterface/ComInterfaceColumns.h \
./editors/ComponentEditor/software/comInterface/cominterfaceseditor.h \
./editors/ComponentEditor/software/comInterface/cominterfacesmodel.h \
./editors/ComponentEditor/software/comInterface/ComInterfaceEditor.h \
./editors/ComponentEditor/software/comInterface/cominterfacesdelegate.h \
./editors/ComponentEditor/software/systemView/SystemViewEditor.h \
./editors/ComponentEditor/software/systemView/SystemViewsEditor.h \
./editors/ComponentEditor/software/systemView/SystemViewsModel.h \
./editors/ComponentEditor/addressSpaces/AddressSpaceColumns.h \
./editors/ComponentEditor/addressSpaces/SegmentColumns.h \
./editors/ComponentEditor/addressSpaces/SegmentDelegate.h \
./editors/ComponentEditor/addressSpaces/addressspaceeditor.h \
./editors/ComponentEditor/addressSpaces/addressspacegeneraleditor.h \
./editors/ComponentEditor/addressSpaces/addressspacesdelegate.h \
./editors/ComponentEditor/addressSpaces/addressspaceseditor.h \
./editors/ComponentEditor/addressSpaces/addressspacesmodel.h \
./editors/ComponentEditor/addressSpaces/segmenteditor.h \
./editors/ComponentEditor/addressSpaces/segmentsmodel.h \
./editors/ComponentEditor/addressSpaces/localMemoryMap/localmemorymapeditor.h \
./editors/ComponentEditor/addressSpaces/localMemoryMap/localmemorymapgraphitem.h \
./editors/ComponentEditor/addressSpaces/addressSpaceVisualizer/AddressSpaceConflictedItem.h \
./editors/ComponentEditor/addressSpaces/addressSpaceVisualizer/addressspacegapitem.h \
./editors/ComponentEditor/addressSpaces/addressSpaceVisualizer/addressspacescene.h \
./editors/ComponentEditor/addressSpaces/addressSpaceVisualizer/addressspacevisualizationitem.h \
./editors/ComponentEditor/addressSpaces/addressSpaceVisualizer/addressspacevisualizer.h \
./editors/ComponentEditor/addressSpaces/addressSpaceVisualizer/localaddrblockgraphitem.h \
./editors/ComponentEditor/addressSpaces/addressSpaceVisualizer/segmentgraphitem.h \
./editors/ComponentEditor/cpus/CpuColumns.h \
./editors/ComponentEditor/cpus/RegionColumns.h \
./editors/ComponentEditor/cpus/SingleCpuEditor.h \
./editors/ComponentEditor/cpus/CpuDetailsEditor.h \
./editors/ComponentEditor/cpus/RegionsModel.h \
./editors/ComponentEditor/cpus/CpuVisualizer.h \
./editors/ComponentEditor/cpus/RegionsEditor.h \
./editors/ComponentEditor/cpus/RegionsDelegate.h \
./editors/ComponentEditor/cpus/RegionScene.h \
./editors/ComponentEditor/cpus/cpusdelegate.h \
./editors/ComponentEditor/cpus/cpuseditor.h \
./editors/ComponentEditor/cpus/cpusmodel.h \
./editors/ComponentEditor/views/EnvIdentifiersColumns.h \
./editors/ComponentEditor/views/ViewColumns.h \
./editors/ComponentEditor/views/ViewsDelegate.h \
./editors/ComponentEditor/views/vieweditor.h \
./editors/ComponentEditor/views/viewseditor.h \
./editors/ComponentEditor/views/viewsmodel.h \
./editors/ComponentEditor/views/envidentifiereditor.h \
./editors/ComponentEditor/views/envidentifiersmodel.h \
./editors/ComponentEditor/fileSet/FileSetColumns.h \
./editors/ComponentEditor/fileSet/fileseteditor.h \
./editors/ComponentEditor/fileSet/filesetsdelegate.h \
./editors/ComponentEditor/fileSet/filesetseditor.h \
./editors/ComponentEditor/fileSet/filesetsmodel.h \
./editors/ComponentEditor/fileSet/groupmanager.h \
./editors/ComponentEditor/fileSet/groupmanagerdelegate.h \
./editors/ComponentEditor/fileSet/file/FileColumns.h \
./editors/ComponentEditor/fileSet/file/filegeneraleditor.h \
./editors/ComponentEditor/fileSet/file/filenameeditor.h \
./editors/ComponentEditor/fileSet/file/filesdelegate.h \
./editors/ComponentEditor/fileSet/file/fileseditor.h \
./editors/ComponentEditor/fileSet/file/filesmodel.h \
./editors/ComponentEditor/fileSet/file/filesview.h \
./editors/ComponentEditor/fileSet/file/filetypeeditor.h \
./editors/ComponentEditor/fileSet/file/filetypeeditordelegate.h \
./editors/ComponentEditor/fileSet/file/filebuildcommand.h \
./editors/ComponentEditor/fileSet/file/filedefinemodel.h \
./editors/ComponentEditor/fileSet/file/filedefineview.h \
./editors/ComponentEditor/fileSet/file/fileeditor.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencyColumns.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencySortFilter.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencyDelegate.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencyEditor.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencyGraphWidget.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencyGraphView.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencyInfoWidget.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencyItem.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencyModel.h \
./editors/ComponentEditor/fileSet/dependencyAnalysis/FileDependencySourceEditor.h \
./editors/ComponentEditor/treeStructure/ComponentEditorChoicesItem.h \
./editors/ComponentEditor/memoryMaps/AccessPoliciesEditor.h \
./editors/ComponentEditor/memoryMaps/AccessPoliciesDelegate.h \
./editors/ComponentEditor/memoryMaps/AccessPoliciesModel.h \
./editors/ComponentEditor/treeStructure/SingleRemapStateItem.h \
./editors/ComponentEditor/treeStructure/RemapStatesItem.h \
./editors/ComponentEditor/treeStructure/MemoryRemapItem.h \
./editors/ComponentEditor/treeStructure/InstantiationsItem.h \
./editors/ComponentEditor/treeStructure/ComponentInstantiationsItem.h \
./editors/ComponentEditor/treeStructure/DesignConfigurationInstantiationsItem.h \
./editors/ComponentEditor/treeStructure/DesignInstantiationsItem.h \
./editors/ComponentEditor/treeStructure/SingleComponentInstantiationItem.h \
./editors/ComponentEditor/treeStructure/SingleDesignConfigurationInstantiationItem.h \
./editors/ComponentEditor/treeStructure/SingleDesignInstantiationItem.h \
./editors/ComponentEditor/treeStructure/ComponentEditorIndirectInterfacesItem.h \
./editors/ComponentEditor/treeStructure/SingleIndirectInterfaceItem.h \
./editors/ComponentEditor/treeStructure/ParameterizableItem.h \
./editors/ComponentEditor/treeStructure/componenteditorregisterfileitem.h \
./editors/ComponentEditor/treeStructure/ResetTypesItem.h \
./editors/ComponentEditor/treeStructure/SubspaceMapItem.h \
./editors/ComponentEditor/treeStructure/ComponentEditorTreeDelegate.h \
./editors/ComponentEditor/treeStructure/SingleCpuItem.h \
./editors/ComponentEditor/treeStructure/ModesItem.h \
./editors/ComponentEditor/treeStructure/SingleModeItem.h \
./editors/ComponentEditor/treeStructure/PowerDomainsItem.h \
./editors/ComponentEditor/treeStructure/TypeDefinitionsItem.h \
./editors/ComponentEditor/treeStructure/WirePortsItem.h \
./editors/ComponentEditor/treeStructure/TransactionalPortsItem.h \
./editors/ComponentEditor/treeStructure/componenteditorrootitem.h \
./editors/ComponentEditor/treeStructure/componenteditorswpropertiesitem.h \
./editors/ComponentEditor/treeStructure/ComponentEditorSystemViewItem.h \
./editors/ComponentEditor/treeStructure/ComponentEditorSystemViewsItem.h \
./editors/ComponentEditor/treeStructure/componenteditortreemodel.h \
./editors/ComponentEditor/treeStructure/ComponentEditorTreeSortProxyModel.h \
./editors/ComponentEditor/treeStructure/componenteditorviewitem.h \
./editors/ComponentEditor/treeStructure/componenteditorviewsitem.h \
./editors/ComponentEditor/treeStructure/componenttreeview.h \
./editors/ComponentEditor/treeStructure/componenteditoraddrblockitem.h \
./editors/ComponentEditor/treeStructure/componenteditoraddrspaceitem.h \
./editors/ComponentEditor/treeStructure/componenteditoraddrspacesitem.h \
./editors/ComponentEditor/treeStructure/componenteditorapiinterfaceitem.h \
./editors/ComponentEditor/treeStructure/componenteditorapiinterfacesitem.h \
./editors/ComponentEditor/treeStructure/componenteditorbusinterfaceitem.h \
./editors/ComponentEditor/treeStructure/componenteditorbusinterfacesitem.h \
./editors/ComponentEditor/treeStructure/componenteditorchannelsitem.h \
./editors/ComponentEditor/treeStructure/componenteditorcominterfaceitem.h \
./editors/ComponentEditor/treeStructure/componenteditorcominterfacesitem.h \
./editors/ComponentEditor/treeStructure/componenteditorcpusitem.h \
./editors/ComponentEditor/treeStructure/componenteditorfielditem.h \
./editors/ComponentEditor/treeStructure/componenteditorfileitem.h \
./editors/ComponentEditor/treeStructure/componenteditorfilesetitem.h \
./editors/ComponentEditor/treeStructure/componenteditorfilesetsitem.h \
./editors/ComponentEditor/treeStructure/componenteditorgeneralitem.h \
./editors/ComponentEditor/treeStructure/componenteditorgroupslot.h \
./editors/ComponentEditor/treeStructure/componenteditoritem.h \
./editors/ComponentEditor/treeStructure/componenteditormemmapitem.h \
./editors/ComponentEditor/treeStructure/componenteditormemmapsitem.h \
./editors/ComponentEditor/treeStructure/componenteditorotherclocksitem.h \
./editors/ComponentEditor/treeStructure/componenteditorparametersitem.h \
./editors/ComponentEditor/treeStructure/componenteditorportsitem.h \
./editors/ComponentEditor/treeStructure/componenteditorregisteritem.h \
./editors/ComponentEditor/visualization/AddressableItem.h \
./editors/ComponentEditor/visualization/fieldgapitem.h \
./editors/ComponentEditor/visualization/memorygapitem.h \
./editors/ComponentEditor/visualization/memoryvisualizationitem.h \
./editors/ComponentEditor/choices/ChoiceColumns.h \
./editors/ComponentEditor/choices/EnumerationColumns.h \
./editors/ComponentEditor/choices/ChoicesEditor.h \
./editors/ComponentEditor/choices/ChoicesModel.h \
./editors/ComponentEditor/choices/EnumerationModel.h \
./editors/ComponentEditor/common/ConfigurableElementFinder.h \
./editors/ComponentEditor/common/DesignConfigurationInstantiationParameterFinder.h \
./editors/ComponentEditor/common/MasterExpressionEditor.h \
./editors/ComponentEditor/common/MemoryTreeFactory.h \
./editors/ComponentEditor/common/ParameterizableTable.h \
./editors/ComponentEditor/common/AbstractParameterModel.h \
./editors/ComponentEditor/common/ExpressionDelegate.h \
./editors/ComponentEditor/common/ExpressionEditor.h \
./editors/ComponentEditor/common/InstantiationConfigurableElementEditor.h \
./editors/ComponentEditor/common/MultilineDescriptionDelegate.h \
./editors/ComponentEditor/common/ReferencingTableModel.h \
./editors/ComponentEditor/common/ExpressionLineEditor.h \
./editors/ComponentEditor/common/EnumerationEditorConstructorDelegate.h \
./editors/ComponentEditor/common/FloatingModeReferenceEditor.h \
./editors/ComponentEditor/common/ModeReferenceEditor.h \
./editors/ComponentEditor/common/ModeReferenceDelegate.h \
./editors/ComponentEditor/common/ModeReferenceModel.h \
./editors/ComponentEditor/common/MemoryAlignScene.h \
./editors/ComponentEditor/common/ReferenceSelector/ReferenceSelector.h \
./editors/ComponentEditor/referenceCounter/ParameterReferenceCounter.h \
./editors/ComponentEditor/referenceCounter/ReferenceCounter.h \
./editors/ComponentEditor/referenceCounter/ComponentParameterReferenceCounter.h \
./editors/ComponentEditor/parameterReferenceTree/ParameterReferenceTree.h \
./editors/ComponentEditor/parameterReferenceTree/ComponentParameterReferenceTree.h \
./editors/ComponentEditor/parameterReferenceTree/ParameterReferenceTreeWindow.h \
./editors/ComponentEditor/remapStates/RemapConditionColumns.h \
./editors/ComponentEditor/remapStates/RemapStatesEditor.h \
./editors/ComponentEditor/remapStates/RemapStatesModel.h \
./editors/ComponentEditor/remapStates/SingleRemapStateEditor.h \
./editors/ComponentEditor/remapStates/RemapConditionModel.h \
./editors/ComponentEditor/remapStates/RemapConditionEditor.h \
./editors/ComponentEditor/remapStates/RemapConditionDelegate.h \
./editors/ComponentEditor/remapStates/ValueOrIndexedValueEditor.h \
./editors/ComponentEditor/instantiations/ComponentInstantiationDisplayer.h \
./editors/ComponentEditor/instantiations/ComponentInstantiationsColumns.h \
./editors/ComponentEditor/instantiations/DesignInstantiationColumns.h \
./editors/ComponentEditor/instantiations/ModuleParameterColumns.h \
./editors/ComponentEditor/instantiations/ModuleParameterHeaderView.h \
./editors/ComponentEditor/instantiations/DesignConfigurationInstantiationEditor.h \
./editors/ComponentEditor/instantiations/DesignInstantiationEditor.h \
./editors/ComponentEditor/instantiations/ComponentInstantiationsEditor.h \
./editors/ComponentEditor/instantiations/ComponentInstantiationsModel.h \
./editors/ComponentEditor/instantiations/ComponentInstantiationEditor.h \
./editors/ComponentEditor/instantiations/InstantiationsEditor.h \
./editors/ComponentEditor/instantiations/DesignInstantiationsEditor.h \
./editors/ComponentEditor/instantiations/DesignInstantiationsModel.h \
./editors/ComponentEditor/instantiations/DesignConfigurationInstantiationsModel.h \
./editors/ComponentEditor/instantiations/DesignConfigurationInstantiationsEditor.h \
./editors/ComponentEditor/instantiations/DesignInstantiationsDelegate.h \
./editors/ComponentEditor/instantiations/filesetrefeditordelegate.h \
./editors/ComponentEditor/instantiations/filesetrefmodel.h \
./editors/ComponentEditor/instantiations/filesetrefeditor.h \
./editors/ComponentEditor/instantiations/ModuleParameterDelegate.h \
./editors/ComponentEditor/instantiations/ModuleParameterEditor.h \
./editors/ComponentEditor/instantiations/ModuleParameterModel.h \
./editors/ComponentEditor/indirectInterfaces/IndirectInterfaceColumns.h \
./editors/ComponentEditor/indirectInterfaces/IndirectInterfacesEditor.h \
./editors/ComponentEditor/indirectInterfaces/IndirectInterfacesModel.h \
./editors/ComponentEditor/indirectInterfaces/IndirectInterfacesDelegate.h \
./editors/ComponentEditor/indirectInterfaces/SingleIndirectInterfaceEditor.h \
./editors/ComponentEditor/memoryMaps/AddressBlockColumns.h \
./editors/ComponentEditor/memoryMaps/EnumeratedValueColumns.h \
./editors/ComponentEditor/memoryMaps/FieldAccessPolicyColumns.h \
./editors/ComponentEditor/memoryMaps/MemoryMapColumns.h \
./editors/ComponentEditor/memoryMaps/MemoryMapsColumns.h \
./editors/ComponentEditor/memoryMaps/RegisterColumns.h \
./editors/ComponentEditor/memoryMaps/RegisterFileColumns.h \
./editors/ComponentEditor/memoryMaps/ResetColumns.h \
./editors/ComponentEditor/memoryMaps/SubspaceMapColumns.h \
./editors/ComponentEditor/memoryMaps/FieldAccessPoliciesDelegate.h \
./editors/ComponentEditor/memoryMaps/FieldAccessPoliciesEditor.h \
./editors/ComponentEditor/memoryMaps/FieldAccessPoliciesModel.h \
./editors/ComponentEditor/memoryMaps/ExpressionProxyModel.h \
./editors/ComponentEditor/memoryMaps/MemoryBlockModel.h \
./editors/ComponentEditor/memoryMaps/MemoryBlockDelegate.h \
./editors/ComponentEditor/memoryMaps/MemoryBlockFilter.h \
./editors/ComponentEditor/memoryMaps/MemoryMapsView.h \
./editors/ComponentEditor/memoryMaps/SingleMemoryMapEditor.h \
./editors/ComponentEditor/memoryMaps/SingleAddressBlockEditor.h \
./editors/ComponentEditor/memoryMaps/SingleRegisterEditor.h \
./editors/ComponentEditor/memoryMaps/SingleFieldEditor.h \
./editors/ComponentEditor/memoryMaps/WriteValueConstraintComboBox.h \
./editors/ComponentEditor/memoryMaps/SingleRegisterFileEditor.h \
./editors/ComponentEditor/memoryMaps/registerfiledelegate.h \
./editors/ComponentEditor/memoryMaps/registerfileeditor.h \
./editors/ComponentEditor/memoryMaps/registerfilemodel.h \
./editors/ComponentEditor/memoryMaps/ResetsEditor.h \
./editors/ComponentEditor/memoryMaps/ResetsModel.h \
./editors/ComponentEditor/memoryMaps/RemapModeReferenceEditor.h \
./editors/ComponentEditor/memoryMaps/ResetsDelegate.h \
./editors/ComponentEditor/memoryMaps/SubspaceMapsEditor.h \
./editors/ComponentEditor/memoryMaps/SingleSubspaceMapEditor.h \
./editors/ComponentEditor/memoryMaps/SubspaceMapModel.h \
./editors/ComponentEditor/memoryMaps/SubspaceMapDelegate.h \
./editors/ComponentEditor/memoryMaps/memorymapdelegate.h \
./editors/ComponentEditor/memoryMaps/memorymapeditor.h \
./editors/ComponentEditor/memoryMaps/memorymapmodel.h \
./editors/ComponentEditor/memoryMaps/memorymapsdelegate.h \
./editors/ComponentEditor/memoryMaps/memorymapseditor.h \
./editors/ComponentEditor/memoryMaps/memorymapsmodel.h \
./editors/ComponentEditor/memoryMaps/registerdelegate.h \
./editors/ComponentEditor/memoryMaps/registereditor.h \
./editors/ComponentEditor/memoryMaps/registertablemodel.h \
./editors/ComponentEditor/memoryMaps/addressblockdelegate.h \
./editors/ComponentEditor/memoryMaps/addressblockeditor.h \
./editors/ComponentEditor/memoryMaps/addressblockmodel.h \
./editors/ComponentEditor/memoryMaps/enumeratedvaluedelegate.h \
./editors/ComponentEditor/memoryMaps/enumeratedvaluemodel.h \
./editors/ComponentEditor/memoryMaps/fieldeditor.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/registerfilegraphitem.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/MemoryBlockGraphItem.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/SubspaceMapGraphItem.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/addressblockgraphitem.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/fieldgraphitem.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/memorymapgraphitem.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/memorymapscene.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/memorymapsvisualizer.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/memorymapview.h \
./editors/ComponentEditor/memoryMaps/memoryMapsVisualizer/registergraphitem.h \
./editors/ComponentEditor/memoryMaps/memoryMapsExpressionCalculators/ReferenceCalculator.h \
./editors/ComponentEditor/resetTypes/ResetTypeColumns.h \
./editors/ComponentEditor/resetTypes/ResetTypesEditor.h \
./editors/ComponentEditor/resetTypes/ResetTypesModel.h \
./editors/ComponentEditor/resetTypes/ResetTypesDelegate.h \
./editors/ComponentEditor/modes/FieldSliceColumns.h \
./editors/ComponentEditor/modes/ModeColumns.h \
./editors/ComponentEditor/modes/PortSliceColumns.h \
./editors/ComponentEditor/modes/FieldSliceEditor.h \
./editors/ComponentEditor/modes/FieldSliceModel.h \
./editors/ComponentEditor/modes/FieldSliceDelegate.h \
./editors/ComponentEditor/modes/ModesEditor.h \
./editors/ComponentEditor/modes/ModesModel.h \
./editors/ComponentEditor/modes/SingleModeEditor.h \
./editors/ComponentEditor/modes/PortSliceEditor.h \
./editors/ComponentEditor/modes/PortSliceModel.h \
./editors/ComponentEditor/modes/PortSliceDelegate.h \
./editors/ComponentEditor/powerDomains/PowerDomainColumns.h \
./editors/ComponentEditor/powerDomains/PowerDomainsEditor.h \
./editors/ComponentEditor/powerDomains/PowerDomainsModel.h \
./editors/ComponentEditor/powerDomains/PowerDomainsDelegate.h \
./editors/CSourceEditor/CSourceHighlight.h \
./editors/CSourceEditor/CSourceContentMatcher.h \
./editors/CSourceEditor/CSourceHighlighter.h \
./editors/CSourceEditor/CSourceTextEdit.h \
./editors/CSourceEditor/CSourceWidget.h \
./editors/ConfigurationTools/ViewConfigurerColumns.h \
./editors/ConfigurationTools/ViewConfigurer.h \
./editors/ConfigurationTools/ViewConfigurerDelegate.h \
./editors/CatalogEditor/CatalogFileColumns.h \
./editors/CatalogEditor/CatalogEditor.h \
./editors/CatalogEditor/CatalogFileModel.h \
./editors/CatalogEditor/CatalogFileDelegate.h \
./editors/CatalogEditor/CatalogFileFilter.h \
./editors/CatalogEditor/CatalogFileView.h \
./editors/BusDefinitionEditor/LogicalPortColumns.h \
./editors/BusDefinitionEditor/busdefgroup.h \
./editors/BusDefinitionEditor/BusDefinitionEditor.h \
./editors/BusDefinitionEditor/BusDefinitionParameterReferenceTree.h \
./editors/BusDefinitionEditor/SystemGroupListEditor.h \
./editors/common/ColumnTypes.h \
./editors/common/DefaultRouting.h \
./editors/common/DesignDiagramResolver.h \
./editors/common/DesignWidgetFactory.h \
./editors/common/DesignWidgetFactoryImplementation.h \
./editors/common/diagramgrid.h \
./editors/common/DiagramUtil.h \
./editors/common/DrawMode.h \
./editors/common/ExpressionSet.h \
./editors/common/GraphicsItemLabel.h \
./editors/common/ImageExporter.h \
./editors/common/NamelabelWidth.h \
./editors/common/PortUtilities.h \
./editors/common/TopComponentParameterFinder.h \
./editors/common/ComponentDesignDiagram.h \
./editors/common/DesignCompletionModel.h \
./editors/common/DesignDiagram.h \
./editors/common/DesignWidget.h \
./editors/common/DocumentNameGroupEditor.h \
./editors/common/Association/Associable.h \
./editors/common/Association/Association.h \
./editors/common/Association/AssociationAddCommand.h \
./editors/common/Association/AssociationChangeEndpointCommand.h \
./editors/common/Association/AssociationRemoveCommand.h \
./editors/common/ComponentInstanceEditor/ConfigurableElementsColumns.h \
./editors/common/ComponentInstanceEditor/EditorConfigurableElement.h \
./editors/common/ComponentInstanceEditor/PowerDomainLinkColumns.h \
./editors/common/ComponentInstanceEditor/ComponentInstanceConfigurableElementsEditor.h \
./editors/common/ComponentInstanceEditor/ComponentInstanceConfigurableElementsFilter.h \
./editors/common/ComponentInstanceEditor/ComponentInstanceConfigurableElementsModel.h \
./editors/common/ComponentInstanceEditor/componentinstanceeditor.h \
./editors/common/ComponentInstanceEditor/configurableelementdelegate.h \
./editors/common/ComponentInstanceEditor/configurableelementeditor.h \
./editors/common/ComponentInstanceEditor/ConfigurableElementsFilter.h \
./editors/common/ComponentInstanceEditor/ConfigurableElementsModel.h \
./editors/common/ComponentInstanceEditor/ConfigurableElementsView.h \
./editors/common/ComponentInstanceEditor/MissingConfigurableElementsFilter.h \
./editors/common/ComponentInstanceEditor/ParameterConfigurableElementsFilter.h \
./editors/common/ComponentInstanceEditor/PowerDomainLinkModel.h \
./editors/common/ComponentInstanceEditor/PowerDomainLinkEditor.h \
./editors/common/ComponentInstanceEditor/PowerDomainLinkDelegate.h \
./editors/common/ConfigurationEditor/configurationeditor.h \
./editors/common/ConfigurationEditor/activeviewdelegate.h \
./editors/common/ConfigurationEditor/activevieweditor.h \
./editors/common/ConfigurationEditor/activeviewmodel.h \
./editors/common/ConnectionEditor/AdHocBoundColumns.h \
./editors/common/ConnectionEditor/AdHocBoundsModel.h \
./editors/common/ConnectionEditor/connectioneditor.h \
./editors/common/DesignParameterReferenceTree/DesignParameterReferenceCounter.h \
./editors/common/DesignParameterReferenceTree/DesignParameterReferenceTree.h \
./editors/common/InterfaceEditor/InterfacePortMapColumns.h \
./editors/common/InterfaceEditor/interfaceeditor.h \
./editors/common/InterfaceEditor/InterfacePortMapDelegate.h \
./editors/common/InterfaceEditor/InterfacePortMapModel.h \
./editors/common/StickyNote/StickyNoteEditCommand.h \
./editors/common/StickyNote/StickyNoteMoveCommand.h \
./editors/common/StickyNote/ColorFillTextItem.h \
./editors/common/StickyNote/StickyNote.h \
./editors/common/StickyNote/StickyNoteAddCommand.h \
./editors/common/StickyNote/StickyNoteRemoveCommand.h \
./editors/common/ComponentItemAutoConnector/BusInterfaceItemMatcher.h \
./editors/common/ComponentItemAutoConnector/BusInterfaceListFiller.h \
./editors/common/ComponentItemAutoConnector/BusInterfaceTableAutoConnector.h \
./editors/common/ComponentItemAutoConnector/HierarchicalBusInterfaceItemMatcher.h \
./editors/common/ComponentItemAutoConnector/HierarchicalBusInterfaceTableAutoConnector.h \
./editors/common/ComponentItemAutoConnector/HierarchicalPortItemMatcher.h \
./editors/common/ComponentItemAutoConnector/HierarchicalPortTableAutoConnector.h \
./editors/common/ComponentItemAutoConnector/ListFiller.h \
./editors/common/ComponentItemAutoConnector/PortItemMatcher.h \
./editors/common/ComponentItemAutoConnector/PortTableAutoConnector.h \
./editors/common/ComponentItemAutoConnector/TableAutoConnector.h \
./editors/common/ComponentItemAutoConnector/TableItemMatcher.h \
./editors/common/ComponentItemAutoConnector/AutoConnectorItem.h \
./editors/common/ComponentItemAutoConnector/PortListFiller.h \
./editors/common/ComponentItemAutoConnector/ComponentItemAutoConnector.h \
./editors/common/ComponentItemAutoConnector/AutoConnectorConnectionTable.h \
./editors/common/ComponentItemAutoConnector/AutoConnector.h \
./editors/common/ComponentItemAutoConnector/AutoConnectorConnectionDelegate.h \
./editors/common/ComponentItemAutoConnector/AutoConnectorListFilter.h \
./editors/HWDesign/AdHocEnabled.h \
./editors/HWDesign/HWAddCommands.h \
./editors/HWDesign/HWMoveCommands.h \
./editors/HWDesign/InterfaceGraphics.h \
./editors/HWDesign/PortmapDialog.h \
./editors/HWDesign/WarningSymbol.h \
./editors/HWDesign/AdHocConnectionItem.h \
./editors/HWDesign/ActiveBusInterfaceItem.h \
./editors/HWDesign/ActivePortItem.h \
./editors/HWDesign/AdHocItem.h \
./editors/HWDesign/SelectItemTypeDialog.h \
./editors/HWDesign/BusInterfaceDialog.h \
./editors/HWDesign/BusInterfaceEndPoint.h \
./editors/HWDesign/HierarchicalBusInterfaceItem.h \
./editors/HWDesign/HierarchicalPortItem.h \
./editors/HWDesign/HWChangeCommands.h \
./editors/HWDesign/HWComponentItem.h \
./editors/HWDesign/HWConnection.h \
./editors/HWDesign/HWConnectionEndpoint.h \
./editors/HWDesign/HWDesignDiagram.h \
./editors/HWDesign/HWDesignWidget.h \
./editors/HWDesign/OffPageConnectorItem.h \
./editors/HWDesign/columnview/ColumnEditDialog.h \
./editors/HWDesign/columnview/HWColumn.h \
./editors/HWDesign/AdhocEditor/AdHocVisibilityColumns.h \
./editors/HWDesign/AdhocEditor/AdHocVisibilityModel.h \
./editors/HWDesign/AdhocEditor/AdHocVisibilityPolicy.h \
./editors/HWDesign/AdhocEditor/AdhocEditor.h \
./editors/HWDesign/AdhocEditor/AdhocPortEditor.h \
./editors/HWDesign/AdhocEditor/AdHocVisibilityDelegate.h \
./editors/HWDesign/AdhocEditor/AdHocVisibilityEditor.h \
./editors/HWDesign/undoCommands/AdHocConnectionAddCommand.h \
./editors/HWDesign/undoCommands/AdHocConnectionDeleteCommand.h \
./editors/HWDesign/undoCommands/AdHocTiedValueCommand.h \
./editors/HWDesign/undoCommands/AdHocTieOffBoundsChangeCommand.h \
./editors/HWDesign/undoCommands/AdHocTieOffConnectionDeleteCommand.h \
./editors/HWDesign/undoCommands/AdHocVisibilityChangeCommand.h \
./editors/HWDesign/undoCommands/ColumnDeleteCommand.h \
./editors/HWDesign/undoCommands/ComponentInstancePasteCommand.h \
./editors/HWDesign/undoCommands/ComponentItemMoveCommand.h \
./editors/HWDesign/undoCommands/ConnectionDeleteCommand.h \
./editors/HWDesign/undoCommands/HWColumnAddCommand.h \
./editors/HWDesign/undoCommands/PortDeleteCommand.h \
./editors/HWDesign/undoCommands/PortPasteCommand.h \
./editors/HWDesign/undoCommands/TopAdHocVisibilityChangeCommand.h \
./editors/HWDesign/undoCommands/PhysicalPortDeleteCommand.h \
./editors/HWDesign/undoCommands/AdHocBoundsChangeCommand.h \
./editors/HWDesign/undoCommands/AdHocTieOffChangeCommand.h \
./editors/HWDesign/undoCommands/ComponentDeleteCommand.h \
./editors/HWDesign/undoCommands/ConfigurableElementChangeCommand.h \
./editors/HWDesign/undoCommands/ConfigurableElementRemoveCommand.h \
./editors/HWDesign/undoCommands/HWComponentAddCommand.h \
./editors/HWDesign/undoCommands/InterfaceDeleteCommand.h \
./editors/HWDesign/undoCommands/ReplaceComponentCommand.h \
./editors/MemoryDesigner/AddressBlockGraphicsItem.h \
./editors/MemoryDesigner/AddressSegmentGraphicsItem.h \
./editors/MemoryDesigner/AddressSpaceGraphicsItem.h \
./editors/MemoryDesigner/ConnectivityComponent.h \
./editors/MemoryDesigner/ConnectivityConnection.h \
./editors/MemoryDesigner/ConnectivityGraph.h \
./editors/MemoryDesigner/ConnectivityGraphFactory.h \
./editors/MemoryDesigner/ConnectivityInterface.h \
./editors/MemoryDesigner/FieldGraphicsItem.h \
./editors/MemoryDesigner/FieldOverlapItem.h \
./editors/MemoryDesigner/MainMemoryGraphicsItem.h \
./editors/MemoryDesigner/MasterSlavePathSearch.h \
./editors/MemoryDesigner/MemoryCollisionItem.h \
./editors/MemoryDesigner/MemoryColumnHandler.h \
./editors/MemoryDesigner/MemoryConnectionAddressCalculator.h \
./editors/MemoryDesigner/MemoryConnectionHandler.h \
./editors/MemoryDesigner/MemoryConnectionItem.h \
./editors/MemoryDesigner/MemoryDesignerChildGraphicsItem.h \
./editors/MemoryDesigner/MemoryDesignerConstants.h \
./editors/MemoryDesigner/MemoryExtensionGraphicsItem.h \
./editors/MemoryDesigner/MemoryItem.h \
./editors/MemoryDesigner/MemoryMapGraphicsItem.h \
./editors/MemoryDesigner/RegisterGraphicsItem.h \
./editors/MemoryDesigner/SubMemoryLayout.h \
./editors/MemoryDesigner/MemoryColumn.h \
./editors/MemoryDesigner/MemoryDesignConstructor.h \
./editors/MemoryDesigner/MemoryDesignDocument.h \
./editors/MemoryDesigner/MemoryDesignerDiagram.h \
./editors/MemoryDesigner/MemoryDesignerGraphicsItem.h \
./editors/MemoryDesigner/MemoryGraphicsItemHandler.h \
./editors/SystemDesign/HWMappingItem.h \
./editors/SystemDesign/SystemDesignWidget.h \
./editors/SystemDesign/ApiGraphicsConnection.h \
./editors/SystemDesign/ComGraphicsConnection.h \
./editors/SystemDesign/SWComponentItem.h \
./editors/SystemDesign/SWConnectionEndpoint.h \
./editors/SystemDesign/SWInterfaceItem.h \
./editors/SystemDesign/SWPortItem.h \
./editors/SystemDesign/SystemColumn.h \
./editors/SystemDesign/SystemComponentItem.h \
./editors/SystemDesign/SystemDesignDiagram.h \
./editors/SystemDesign/SystemDetailsEditor/SystemDetailsEditor.h \
./editors/SystemDesign/SystemDetailsEditor/ExportSWDialog.h \
./editors/SystemDesign/SystemDetailsEditor/SwitchHWDialog.h \
./editors/SystemDesign/UndoCommands/ApiConnectionAddCommand.h \
./editors/SystemDesign/UndoCommands/ApiConnectionDeleteCommand.h \
./editors/SystemDesign/UndoCommands/ApiConnectionExchangeCommand.h \
./editors/SystemDesign/UndoCommands/ComConnectionAddCommand.h \
./editors/SystemDesign/UndoCommands/ComConnectionDeleteCommand.h \
./editors/SystemDesign/UndoCommands/ComConnectionExchangeCommand.h \
./editors/SystemDesign/UndoCommands/SWInterfaceAddCommand.h \
./editors/SystemDesign/UndoCommands/SWInterfaceDeleteCommand.h \
./editors/SystemDesign/UndoCommands/SWInterfaceMoveCommand.h \
./editors/SystemDesign/UndoCommands/SWPortDeleteCommand.h \
./editors/SystemDesign/UndoCommands/SystemAddCommands.h \
./editors/SystemDesign/UndoCommands/SystemChangeCommands.h \
./editors/SystemDesign/UndoCommands/SystemDeleteCommands.h \
./editors/SystemDesign/UndoCommands/SystemMoveCommands.h \
./editors/SystemDesign/UndoCommands/ReplaceSystemComponentCommand.h \
./editors/SystemDesign/UndoCommands/SystemComponentAddCommand.h \
./editors/SystemDesign/UndoCommands/SystemComponentDeleteCommand.h \
./editors/common/VendorExtensionEditor/VendorExtensionColumns.h \
./editors/common/VendorExtensionEditor/VendorExtensionsGeneral.h \
./editors/common/VendorExtensionEditor/VendorExtensionsEditor.h \
./editors/common/VendorExtensionEditor/VendorExtensionsModel.h \
./editors/common/VendorExtensionEditor/VendorExtensionsDelegate.h \
./editors/common/VendorExtensionEditor/VendorExtensionsFilter.h \
./editors/common/VendorExtensionEditor/VendorExtensionAttributesEditor/VendorExtensionAttributesColumns.h \
./editors/common/VendorExtensionEditor/VendorExtensionAttributesEditor/VendorExtensionAttributesModel.h \
./editors/PythonSourceEditor/PythonSourceHighlight.h \
./editors/PythonSourceEditor/ScriptingSideArea.h \
./editors/PythonSourceEditor/PythonSourceEditor.h \
./editors/PythonSourceEditor/ScriptInputEditor.h \
./editors/PythonSourceEditor/ScriptViewEditor.h \
./editors/AbstractionDefinitionEditor/AbstractionDefinitionPortsSortFilter.h \
./editors/AbstractionDefinitionEditor/AbstractionDefinitionSignalRow.h \
./editors/AbstractionDefinitionEditor/AbstractionTransactionalPortsSortFilter.h \
./editors/AbstractionDefinitionEditor/AbstractionWirePortsSortFilter.h \
./editors/AbstractionDefinitionEditor/LogicalPortColumns.h \
./editors/AbstractionDefinitionEditor/QualifierData.h \
./editors/AbstractionDefinitionEditor/absdefgroup.h \
./editors/AbstractionDefinitionEditor/AbstractionDefinitionEditor.h \
./editors/AbstractionDefinitionEditor/AbstractionPortsDelegate.h \
./editors/AbstractionDefinitionEditor/AbstractionPortsEditor.h \
./editors/AbstractionDefinitionEditor/AbstractionPortsModel.h \
./editors/AbstractionDefinitionEditor/AbstractionPortsView.h \
./editors/AbstractionDefinitionEditor/AbstractionTransactionalPortsDelegate.h \
./editors/AbstractionDefinitionEditor/AbstractionWirePortsDelegate.h \
./editors/AbstractionDefinitionEditor/QualifierEditor.h \
./kactusGenerators/DocumentGenerator/DocumentationWriter.h \
./kactusGenerators/DocumentGenerator/HtmlWriter.h \
./kactusGenerators/DocumentGenerator/MarkdownWriter.h \
./kactusGenerators/DocumentGenerator/documentgenerator.h \
./PythonAPI/WriteChannel.h \
./PythonAPI/ChannelRelay.h \
./PythonAPI/FileChannel.h \
./PythonAPI/PythonInterpreter.h \
./PythonAPI/StdInputListener.h \
./PythonAPI/extensions/IOCatcher.h \
./editors/AbstractionDefinitionEditor/AbsDefParameterReferenceCounter.h \
./editors/AbstractionDefinitionEditor/AbsDefParameterReferenceTree.h
SOURCES += ./editors/ComponentEditor/busInterfaces/general/MasterModeEditor.cpp \
./common/GenericEditProvider.cpp \
./common/NameGenerationPolicy.cpp \
./common/TextEditProvider.cpp \
./common/dialogs/comboSelector/comboselector.cpp \
./common/dialogs/propertyPageDialog/PropertyPageDialog.cpp \
./common/dialogs/propertyPageDialog/PropertyPageView.cpp \
./common/dialogs/newObjectDialog/newobjectdialog.cpp \
./common/dialogs/createConfigurationDialog/createconfigurationdialog.cpp \
./common/dialogs/listSelectDialog/ListSelectDialog.cpp \
./common/dialogs/NewDesignDialog/NewDesignDialog.cpp \
./common/dialogs/LibrarySettingsDialog/librarysettingsdelegate.cpp \
./common/dialogs/LibrarySettingsDialog/LibrarySettingsDialog.cpp \
./common/dialogs/NewBusDialog/NewBusDialog.cpp \
./common/validators/LibraryPathValidator/librarypathvalidator.cpp \
./common/widgets/assistedLineEdit/AssistedLineEdit.cpp \
./common/widgets/assistedLineEdit/BasicLineContentMatcher.cpp \
./common/widgets/assistedLineEdit/LineContentAssistWidget.cpp \
./common/widgets/listManager/dirlistmanager.cpp \
./common/widgets/listManager/dirlistmanagermodel.cpp \
./common/widgets/listManager/listeditor.cpp \
./common/widgets/listManager/listmanager.cpp \
./common/widgets/listManager/listmanagermodel.cpp \
./common/widgets/nameGroupBox/namegroupbox.cpp \
./common/widgets/vlnvDisplayer/vlnvdisplayer.cpp \
./common/widgets/assistedTextEdit/AssistedTextEdit.cpp \
./common/widgets/assistedTextEdit/TextContentAssistWidget.cpp \
./common/widgets/assistedTextEdit/ToolTipHintWidget.cpp \
./common/widgets/vlnvEditor/VLNVContentMatcher.cpp \
./common/widgets/vlnvEditor/VLNVDataTree.cpp \
./common/widgets/vlnvEditor/vlnveditor.cpp \
./common/widgets/kactusAttributeEditor/KactusAttributeEditor.cpp \
./common/widgets/componentPreviewBox/ComponentPreviewBox.cpp \
./common/widgets/tabDocument/TabDocument.cpp \
./common/widgets/booleanComboBox/booleancombobox.cpp \
./common/widgets/ParameterGroupBox/parametergroupbox.cpp \
./common/widgets/nameGroupEditor/namegroupeditor.cpp \
./common/widgets/summaryLabel/summarylabel.cpp \
./common/widgets/interfaceModeSelector/interfacemodeselector.cpp \
./common/widgets/interfaceSelector/interfaceselector.cpp \
./common/widgets/LineEditEx/LineEditEx.cpp \
./common/widgets/SnippetTextEdit/SnippetHighlighter.cpp \
./common/widgets/SnippetTextEdit/SnippetTextEdit.cpp \
./common/widgets/usageComboBox/usagecombobox.cpp \
./common/widgets/accessComboBox/accesscombobox.cpp \
./common/widgets/modWriteComboBox/modwritecombobox.cpp \
./common/widgets/readActionComboBox/readactioncombobox.cpp \
./common/widgets/testConstraintComboBox/testconstraintcombobox.cpp \
./common/widgets/viewSelector/viewselector.cpp \
./common/widgets/fileTypeSelector/filetypeselector.cpp \
./common/widgets/EnumCollectionEditor/EnumCollectionEditor.cpp \
./common/widgets/EnumCollectionEditor/EnumerationEditor.cpp \
./common/widgets/FileSelector/fileselector.cpp \
./common/widgets/LibrarySelectorWidget/LibrarySelectorWidget.cpp \
./common/widgets/LibrarySelectorWidget/LibraryPathEditor/librarypatheditor.cpp \
./common/widgets/LibrarySelectorWidget/LibraryPathSelector/librarypathselector.cpp \
./common/widgets/DirectoryListSelector/DirectoryListSelector.cpp \
./common/widgets/colorBox/ColorBox.cpp \
./common/widgets/tagEditor/FlowLayout.cpp \
./common/widgets/tagEditor/TagCompleterModel.cpp \
./common/widgets/tagEditor/TagContainer.cpp \
./common/widgets/tagEditor/TagDisplay.cpp \
./common/widgets/tagEditor/TagEditor.cpp \
./common/widgets/tagEditor/TagEditorContainer.cpp \
./common/widgets/tagEditor/TagLabel.cpp \
./common/widgets/tagEditor/TagSelector.cpp \
./common/widgets/tagEditor/TagSelectorContainer.cpp \
./common/widgets/busReferenceComboBox/BusReferenceComboBox.cpp \
./common/widgets/segmentComboBox/SegmentComboBox.cpp \
./common/widgets/TreeItemSelector/FramedTreeItemEditor.cpp \
./common/widgets/TreeItemSelector/TreeItemEditor.cpp \
./common/widgets/TreeItemSelector/TreeItemModel.cpp \
./common/widgets/GroupBoxWithAlertSign/GroupBoxWithAlertSign.cpp \
./common/widgets/GroupBoxWithAlertSign/StyleGroupBoxWithAlertSign.cpp \
./common/widgets/GroupBoxWithAlertSign/StyleOptionGroupBoxWithAlertSign.cpp \
./common/graphicsItems/GraphicsColumnAddCommand.cpp \
./common/graphicsItems/CommonGraphicsUndoCommands.cpp \
./common/graphicsItems/ComponentItem.cpp \
./common/graphicsItems/ConnectionEndpoint.cpp \
./common/graphicsItems/ConnectionUndoCommands.cpp \
./common/graphicsItems/expandableitem.cpp \
./common/graphicsItems/GraphicsColumn.cpp \
./common/graphicsItems/GraphicsColumnLayout.cpp \
./common/graphicsItems/GraphicsColumnUndoCommands.cpp \
./common/graphicsItems/GraphicsConnection.cpp \
./common/graphicsItems/graphicsexpandcollapseitem.cpp \
./common/graphicsItems/GraphicsLineEdit.cpp \
./common/graphicsItems/GraphicsRectButton.cpp \
./common/graphicsItems/visualizeritem.cpp \
./common/delegates/ComboDelegate/combodelegate.cpp \
./common/delegates/LineEditDelegate/lineeditdelegate.cpp \
./common/views/EditableTableView/editabletableview.cpp \
./common/views/EditableListView/editablelistview.cpp \
./common/views/EditableTreeView/EditableTreeSortFilter.cpp \
./common/views/EditableTreeView/EditableTreeView.cpp \
./common/views/ExpandingTreeView/ExpandingTreeView.cpp \