-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathKonclude.pri
More file actions
5237 lines (5235 loc) · 370 KB
/
Konclude.pri
File metadata and controls
5237 lines (5235 loc) · 370 KB
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
HEADERS += \
./Source\KoncludeSettings.h \
./Source\CKoncludeInfo.h \
./Source\Concurrent\CWatchDogThreadData.h \
./Source\Concurrent\CWatchDogThread.h \
./Source\Concurrent\CWatchDog.h \
./Source\Concurrent\CThreadActivator.h \
./Source\Concurrent\CThread.h \
./Source\Concurrent\CSyncedFreeEventChannel.h \
./Source\Concurrent\CSyncedEventChannel.h \
./Source\Concurrent\CQueuedLinkedEventHandler.h \
./Source\Concurrent\ConcurrentSettings.h \
./Source\Concurrent\CIntervalThreadData.h \
./Source\Concurrent\CIntervalThread.h \
./Source\Concurrent\CEventThread.h \
./Source\Concurrent\CEventQueue.h \
./Source\Concurrent\CEventProcessor.h \
./Source\Concurrent\CEventLinkerQueue.h \
./Source\Concurrent\CEventLinkerProvider.h \
./Source\Concurrent\CEventLinkerChannel.h \
./Source\Concurrent\CEventLinker.h \
./Source\Concurrent\CEventHandler.h \
./Source\Concurrent\CEventCommunicator.h \
./Source\Concurrent\CEventChannelLinker.h \
./Source\Concurrent\CEventChannel.h \
./Source\Concurrent\CEventAllocator.h \
./Source\Concurrent\CEvent.h \
./Source\Concurrent\CConcurrentTaskScheduler.h \
./Source\Concurrent\Callback\CSynchronizedCallbackListExecuter.h \
./Source\Concurrent\Callback\CCallbackRememberLinkedExecuter.h \
./Source\Concurrent\Callback\CCallbackListExecuter.h \
./Source\Concurrent\Callback\CCallbackDataContext.h \
./Source\Concurrent\Callback\CCallbackData.h \
./Source\Concurrent\Callback\CBlockingCallbackData.h \
./Source\Concurrent\Callback\CallbackSettings.h \
./Source\Concurrent\Events\CWatchDogFeedbackEvent.h \
./Source\Concurrent\Events\CWaitSynchronizationEvent.h \
./Source\Concurrent\Events\CTimerIntervalEvent.h \
./Source\Concurrent\Events\CRequestFeedbackEvent.h \
./Source\Concurrent\Events\CHandleEventsEvent.h \
./Source\Concurrent\Events\CCustomEvent.h \
./Source\Concurrent\Events\CCustomCallbackEvent.h \
./Source\Concurrent\Events\CControlEvent.h \
./Source\Config\CStringConfigType.h \
./Source\Config\ConfigSettings.h \
./Source\Config\CObjectConfigType.h \
./Source\Config\CLocalConfigurationFixedExtension.h \
./Source\Config\CLocalConfigurationExtension.h \
./Source\Config\CIntegerConfigType.h \
./Source\Config\CGlobalConfigurationProvider.h \
./Source\Config\CGlobalConfigurationBase.h \
./Source\Config\CConvertStringConfigType.h \
./Source\Config\CConvertIntegerConfigType.h \
./Source\Config\CConvertBooleanConfigType.h \
./Source\Config\CConfigurationProvider.h \
./Source\Config\CConfigurationGroup.h \
./Source\Config\CConfigurationBase.h \
./Source\Config\CConfiguration.h \
./Source\Config\CConfigType.h \
./Source\Config\CConfigDebugDataReader.h \
./Source\Config\CBooleanConfigType.h \
./Source\Config\CConvertDoubleConfigType.h \
./Source\Config\CDoubleConfigType.h \
./Source\Config\CConvertStringListConfigType.h \
./Source\Config\CStringListConfigType.h \
./Source\Config\CConfigDataReader.h \
./Source\Config\CConfigData.h \
./Source\Config\CConfigDescription.h \
./Source\Context\ContextSettings.h \
./Source\Context\CMemoryPoolReallocationIncreasingContext.h \
./Source\Context\CMemoryPoolNewAllocationIncreasingContext.h \
./Source\Context\CMemoryPoolNewAllocationContext.h \
./Source\Context\CContextBase.h \
./Source\Context\CContext.h \
./Source\Control\Command\CReasonerConfigurationGroup.h \
./Source\Control\Command\CReasonerManagerConfigType.h \
./Source\Control\Command\CReasonerCommanderGlobalConfiguration.h \
./Source\Control\Command\CReasonerCommandBuilder.h \
./Source\Control\Command\CPreconditionSynchronizer.h \
./Source\Control\Command\CPreconditionCommand.h \
./Source\Control\Command\COntologyRevisionManagerConfigType.h \
./Source\Control\Command\CDefaultCommanderInitializationFactory.h \
./Source\Control\Command\CConfigManagerReader.h \
./Source\Control\Command\CCommandRecordRouter.h \
./Source\Control\Command\CCommandRecorder.h \
./Source\Control\Command\CCommandRecordData.h \
./Source\Control\Command\CCommandProcessedPrecondition.h \
./Source\Control\Command\CCommandPrecondition.h \
./Source\Control\Command\CCommandExecutedBlocker.h \
./Source\Control\Command\CCommanderManagerThread.h \
./Source\Control\Command\CCommanderManagerConfigType.h \
./Source\Control\Command\CCommanderManager.h \
./Source\Control\Command\CCommanderInitializationFactory.h \
./Source\Control\Command\CCommandDelegater.h \
./Source\Control\Command\CCommandBuilder.h \
./Source\Control\Command\CCommand.h \
./Source\Control\Command\CClassificationManagerConfigType.h \
./Source\Control\Command\CommandSettings.h \
./Source\Control\Command\Events\CRealizeCommandEvent.h \
./Source\Control\Command\Events\COntologyPreparedCallbackEvent.h \
./Source\Control\Command\Events\CInitializeEvent.h \
./Source\Control\Command\Events\CCommandProcessedCallbackEvent.h \
./Source\Control\Command\Events\CCommandPreconditionChangeEvent.h \
./Source\Control\Command\Events\CCommandCalculatedQueryCallbackEvent.h \
./Source\Control\Command\Instructions\CWriteXMLSubClassHierarchyQueryCommand.h \
./Source\Control\Command\Instructions\CWriteXMLIndividualTypesQueryCommand.h \
./Source\Control\Command\Instructions\CWriteOWLlinkOWL2XMLSatisfiableTestCommand.h \
./Source\Control\Command\Instructions\CWriteOWL2XMLOntologyCommand.h \
./Source\Control\Command\Instructions\CWriteOntologyCommand.h \
./Source\Control\Command\Instructions\CWriteFunctionalSubClassHierarchyQueryCommand.h \
./Source\Control\Command\Instructions\CWriteFunctionalIndividualTypesQueryCommand.h \
./Source\Control\Command\Instructions\CWriteCustomQueryCommand.h \
./Source\Control\Command\Instructions\CTestTestsuiteCommand.h \
./Source\Control\Command\Instructions\CTestTestfileCommand.h \
./Source\Control\Command\Instructions\CTestExtendedCalculateQueryCommand.h \
./Source\Control\Command\Instructions\CTellKnowledgeBaseOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CTellKnowledgeBaseCommand.h \
./Source\Control\Command\Instructions\CStreamParseOWL2XMLOntologyCommand.h \
./Source\Control\Command\Instructions\CStreamParseOWL2FunctionalOntologyCommand.h \
./Source\Control\Command\Instructions\CSkipUnsupportedCommandCommand.h \
./Source\Control\Command\Instructions\CSetKnowledgeBaseConfigCommand.h \
./Source\Control\Command\Instructions\CSetConfigCommand.h \
./Source\Control\Command\Instructions\CSAXParseOWL2XMLOntologyCommand.h \
./Source\Control\Command\Instructions\CSaveOWLlinkOWL2XMLSatisfiableTestExtractedKnowledgeBaseCommand.h \
./Source\Control\Command\Instructions\CSaveOWL2XMLExtractedKnowledgeBaseCommand.h \
./Source\Control\Command\Instructions\CSaveKnowledgeBaseCommand.h \
./Source\Control\Command\Instructions\CRendererCommandProvider.h \
./Source\Control\Command\Instructions\CReleaseKnowledgeBaseCommand.h \
./Source\Control\Command\Instructions\CRealizeQueryCommand.h \
./Source\Control\Command\Instructions\CReadXMLCommandProvider.h \
./Source\Control\Command\Instructions\CReadXMLCommand.h \
./Source\Control\Command\Instructions\CReadTextCommandProvider.h \
./Source\Control\Command\Instructions\CReadTextCommand.h \
./Source\Control\Command\Instructions\CQueryGeneratorCommandProvider.h \
./Source\Control\Command\Instructions\CQueryCommandProvider.h \
./Source\Control\Command\Instructions\CQueriesCommandProvider.h \
./Source\Control\Command\Instructions\CProcessQueryOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CProcessQueryCommand.h \
./Source\Control\Command\Instructions\CProcessClassNameSatisfiableQueryCommand.h \
./Source\Control\Command\Instructions\CPreprocessKnowledgeBaseRequirementsForQueryCommand.h \
./Source\Control\Command\Instructions\CPrepareKnowledgeBaseForRevisionCommand.h \
./Source\Control\Command\Instructions\CPrepareKnowledgeBaseForQueryCommand.h \
./Source\Control\Command\Instructions\CPrepareKnowledgeBaseCommand.h \
./Source\Control\Command\Instructions\CParseTestsuiteXMLNodeCommand.h \
./Source\Control\Command\Instructions\CParseTestsuiteCommandsCommand.h \
./Source\Control\Command\Instructions\CParseSPARQLQueryCommand.h \
./Source\Control\Command\Instructions\CParseSPARQLCommandsCommand.h \
./Source\Control\Command\Instructions\CParseProcessSPARQLUpdateTextCommand.h \
./Source\Control\Command\Instructions\CParseProcessSPARQLTextCommand.h \
./Source\Control\Command\Instructions\CParseProcessSPARQLManageTextCommand.h \
./Source\Control\Command\Instructions\CParseOWLlinkCommandsCommand.h \
./Source\Control\Command\Instructions\CParseOWL2XMLQueryCommand.h \
./Source\Control\Command\Instructions\CParseOWL2XMLOntologyCommand.h \
./Source\Control\Command\Instructions\CParseOntologyCommand.h \
./Source\Control\Command\Instructions\CParseKRSSTestConceptOntologyCommand.h \
./Source\Control\Command\Instructions\CParseCommandsCommand.h \
./Source\Control\Command\Instructions\CLoadKnowledgeBaseStartDownloadCommand.h \
./Source\Control\Command\Instructions\CLoadKnowledgeBaseOWLXMLOntologyCommand.h \
./Source\Control\Command\Instructions\CLoadKnowledgeBaseOWLFunctionalOntologyCommand.h \
./Source\Control\Command\Instructions\CLoadKnowledgeBaseOWLAutoOntologyCommand.h \
./Source\Control\Command\Instructions\CLoadKnowledgeBaseKRSSTestConceptCommand.h \
./Source\Control\Command\Instructions\CLoadKnowledgeBaseFinishDownloadCommand.h \
./Source\Control\Command\Instructions\CLoadKnowledgeBaseData.h \
./Source\Control\Command\Instructions\CLoadKnowledgeBaseCommand.h \
./Source\Control\Command\Instructions\CLoadKnowledgeBaseAllDownloadedContinuer.h \
./Source\Control\Command\Instructions\CKnowledgeBaseRevisionCommandProvider.h \
./Source\Control\Command\Instructions\CKnowledgeBaseRealizeCommand.h \
./Source\Control\Command\Instructions\CKnowledgeBaseQueryCommand.h \
./Source\Control\Command\Instructions\CKnowledgeBaseProcessCommand.h \
./Source\Control\Command\Instructions\CKnowledgeBaseEntitiesExtractionSpecification.h \
./Source\Control\Command\Instructions\CKnowledgeBaseCommand.h \
./Source\Control\Command\Instructions\CKnowledgeBaseClassifyCommand.h \
./Source\Control\Command\Instructions\CIsTriviallyConsistentQueryCommand.h \
./Source\Control\Command\Instructions\CIsSatisfiableQueryOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CIsSatisfiableQueryCommand.h \
./Source\Control\Command\Instructions\CIsInstanceOfQueryOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CIsInstanceOfQueryCommand.h \
./Source\Control\Command\Instructions\CIsConsistentQueryOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CIsConsistentQueryCommand.h \
./Source\Control\Command\Instructions\CIsClassSubsumedByQueryOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CIsClassSubsumedByQueryCommand.h \
./Source\Control\Command\Instructions\CInstallKnowledgeBaseRevisionUpdateCommand.h \
./Source\Control\Command\Instructions\CInsertResponseCommentCommand.h \
./Source\Control\Command\Instructions\CInitializeReasonerCommand.h \
./Source\Control\Command\Instructions\CInitializeConfigurationCommand.h \
./Source\Control\Command\Instructions\CImportKnowledgeBaseOWLAutoOntologyCommand.h \
./Source\Control\Command\Instructions\CGetSubClassHierarchyQueryOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CGetSubClassHierarchyQueryCommand.h \
./Source\Control\Command\Instructions\CGetSettingsCommand.h \
./Source\Control\Command\Instructions\CGetReasonerCommand.h \
./Source\Control\Command\Instructions\CGetKnowledgeBaseSettingsCommand.h \
./Source\Control\Command\Instructions\CGetKnowledgeBaseObjectPropertyEntitiesCommand.h \
./Source\Control\Command\Instructions\CGetKnowledgeBaseNamedIndividualEntitiesCommand.h \
./Source\Control\Command\Instructions\CGetKnowledgeBaseLanguageCommand.h \
./Source\Control\Command\Instructions\CGetKnowledgeBaseEntitiesCommand.h \
./Source\Control\Command\Instructions\CGetKnowledgeBaseConfigCommand.h \
./Source\Control\Command\Instructions\CGetKnowledgeBaseClassEntitiesCommand.h \
./Source\Control\Command\Instructions\CGetFlattenedTypesQueryCommand.h \
./Source\Control\Command\Instructions\CGetFlattenedTypesOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CGetDescriptionCommand.h \
./Source\Control\Command\Instructions\CGetCurrentKnowledgeBaseRevisionCommand.h \
./Source\Control\Command\Instructions\CGetConfigCommand.h \
./Source\Control\Command\Instructions\CGetClassificationManagerCommand.h \
./Source\Control\Command\Instructions\CGenerateQueryCommand.h \
./Source\Control\Command\Instructions\CExtractToldExpressionsOntologyCommand.h \
./Source\Control\Command\Instructions\CExtractOntologyCommand.h \
./Source\Control\Command\Instructions\CExtractKnowledgeBaseLanguageCommand.h \
./Source\Control\Command\Instructions\CExtractKnowledgeBaseEntitiesCommand.h \
./Source\Control\Command\Instructions\CExtractedKnowledgeBaseEntitiesContainer.h \
./Source\Control\Command\Instructions\CEvaluateTestsuiteCommand.h \
./Source\Control\Command\Instructions\CCreateKnowledgeBaseCommand.h \
./Source\Control\Command\Instructions\CConstructWriteXMLSubClassHirarchyQueryCommand.h \
./Source\Control\Command\Instructions\CConstructWriteXMLIndividualTypesQueryCommand.h \
./Source\Control\Command\Instructions\CConstructWriteFunctionalSubClassHirarchyQueryCommand.h \
./Source\Control\Command\Instructions\CConstructWriteFunctionalIndividualTypesQueryCommand.h \
./Source\Control\Command\Instructions\CConstructWriteCustomQueryCommand.h \
./Source\Control\Command\Instructions\CConstructSubClassHirarchyQueryCommand.h \
./Source\Control\Command\Instructions\CConstructRealizeQueryCommand.h \
./Source\Control\Command\Instructions\CConstructIsTriviallyConsistentQueryCommand.h \
./Source\Control\Command\Instructions\CConstructIsConsistentQueryCommand.h \
./Source\Control\Command\Instructions\CConstructFlattenedTypesQueryCommand.h \
./Source\Control\Command\Instructions\CConstructClassSatisfiableQueryCommand.h \
./Source\Control\Command\Instructions\CConstructClassifyQueryCommand.h \
./Source\Control\Command\Instructions\CClassifyQueryCommand.h \
./Source\Control\Command\Instructions\CChooseParseInstallKnowledgeBaseOWLXMLOntologyCommand.h \
./Source\Control\Command\Instructions\CChooseParseInstallKnowledgeBaseOWLAutoOntologyCommand.h \
./Source\Control\Command\Instructions\CCalculateQueryCommand.h \
./Source\Control\Command\Instructions\CCalculateQueriesCommand.h \
./Source\Control\Command\Instructions\CBuildQueryCommand.h \
./Source\Control\Command\Instructions\CAreClassesEquivalentQueryOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CAreClassesEquivalentQueryCommand.h \
./Source\Control\Command\Instructions\CAreClassesDisjointQueryOWL2XMLNodeCommand.h \
./Source\Control\Command\Instructions\CAreClassesDisjointQueryCommand.h \
./Source\Control\Command\Instructions\CGetQueryDependentKnowledgeBaseRevisionUpdatesCommand.h \
./Source\Control\Command\Instructions\CInstallQueryDependentKnowledgeBaseRevisionUpdatesCommand.h \
./Source\Control\Command\Instructions\CCreateKnowledgeBaseRevisionUpdateCommand.h \
./Source\Control\Command\Instructions\CConnectKnowledgeBaseExternalTriplesDSNCommand.h \
./Source\Control\Command\Instructions\CParseInstallKnowledgeBaseExternalTriplesDSNConnectionCommand.h \
./Source\Control\Command\Records\CUnspecifiedMessageInformationRecord.h \
./Source\Control\Command\Records\CUnspecifiedMessageErrorRecord.h \
./Source\Control\Command\Records\CStopProcessCommandRecord.h \
./Source\Control\Command\Records\CStartProcessCommandRecord.h \
./Source\Control\Command\Records\CProcessErrorRecord.h \
./Source\Control\Command\Records\CParseSyntaxErrorRecord.h \
./Source\Control\Command\Records\CNotSupportedNodeErrorRecord.h \
./Source\Control\Command\Records\CFinishProcessCommandRecord.h \
./Source\Control\Command\Records\CClosureProcessCommandRecord.h \
./Source\Control\Command\Records\CBuildSubCommandRecord.h \
./Source\Control\Interface\CommandLine\CSPARQLServerComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CSPARQLFileComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\COWLLinkServerComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\COWLLinkFileComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CHelpComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CCommandLinePreparationTranslatorSelector.h \
./Source\Control\Interface\CommandLine\CCommandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CCLISatisfiabilityComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CCLIRealizationComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CCLIObjectPropertyClassificationComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CCLIDataPropertyClassificationComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CCLIConsistencyComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CCLIComandLinePreparationTranslator.h \
./Source\Control\Interface\CommandLine\CCLIClassClassificationComandLinePreparationTranslator.h \
./Source\Control\Interface\JNI\com_konclude_jnibridge_AxiomExpressionBuildingBridge.h \
./Source\Control\Interface\JNI\com_konclude_jnibridge_KoncludeReasonerBridge.h \
./Source\Control\Interface\JNI\com_konclude_jnibridge_QueryingBridge.h \
./Source\Control\Interface\JNI\JNISettings.h \
./Source\Control\Interface\JNI\CJNIQueryProcessor.h \
./Source\Control\Interface\JNI\CJNIOntologyRevisionData.h \
./Source\Control\Interface\JNI\CJNIInstanceManagerConfigType.h \
./Source\Control\Interface\JNI\CJNIInstanceManager.h \
./Source\Control\Interface\JNI\CJNIHandlingClassData.h \
./Source\Control\Interface\JNI\CJNIHandler.h \
./Source\Control\Interface\JNI\CJNIEntityMappingHash.h \
./Source\Control\Interface\JNI\CJNIEntityExpressionMappedObjectSetVisitingCallback.h \
./Source\Control\Interface\JNI\CJNIEntityExpressionMappedObjectSetOfSetVisitingCallback.h \
./Source\Control\Interface\JNI\CJNICommandProcessor.h \
./Source\Control\Interface\JNI\CJNIAxiomExpressionVisitingLoader.h \
./Source\Control\Interface\JNI\CConfigJNIReader.h \
./Source\Control\Interface\OWLlink\OWLlinkSettings.h \
./Source\Control\Interface\OWLlink\COWLLinkRecordInterpreter.h \
./Source\Control\Interface\OWLlink\COWLlinkHttpConnectionHandlerProcessorFactory.h \
./Source\Control\Interface\OWLlink\COWLlinkHttpConnectionHandlerProcessor.h \
./Source\Control\Interface\OWLlink\COWLlinkProcessor.h \
./Source\Control\Interface\SPARQL\SPARQLSettings.h \
./Source\Control\Interface\SPARQL\CSPARQLXMLAnswerStreamingSerializer.h \
./Source\Control\Interface\SPARQL\CSPARQLXMLAnswerStreamingPrecompiledByteArraySerializer.h \
./Source\Control\Interface\SPARQL\CSPARQLXMLAnswerSerializer.h \
./Source\Control\Interface\SPARQL\CSPARQLStreamingWriter.h \
./Source\Control\Interface\SPARQL\CSPARQLResultStreamingData.h \
./Source\Control\Interface\SPARQL\CSPARQLResultStreamingController.h \
./Source\Control\Interface\SPARQL\CSPARQLResultBufferWriteData.h \
./Source\Control\Interface\SPARQL\CSPARQLRecordResultStreamingInterpreter.h \
./Source\Control\Interface\SPARQL\CSPARQLRecordInterpreter.h \
./Source\Control\Interface\SPARQL\CSPARQLHttpConnectionHandlerProcessorFactory.h \
./Source\Control\Interface\SPARQL\CSPARQLHttpConnectionHandlerProcessor.h \
./Source\Control\Interface\SPARQL\Events\CResultStreamingWriteEvent.h \
./Source\Control\Loader\LoaderSettings.h \
./Source\Control\Loader\CTransitiveConnectedELClassesTestDataGeneratorLoader.h \
./Source\Control\Loader\CTestTaskThroughputLoader.h \
./Source\Control\Loader\CTestQHashVsQMapLoader.h \
./Source\Control\Loader\CTestOWLlinkAPIBatchFileLoader.h \
./Source\Control\Loader\CTestMemoryAccessLoader.h \
./Source\Control\Loader\CTestHashModificationLoader.h \
./Source\Control\Loader\CSPARQLResultsComparisonLoader.h \
./Source\Control\Loader\CSPARQLHttpServerLoader.h \
./Source\Control\Loader\CRecursionTestDataGeneratorLoader.h \
./Source\Control\Loader\CReasonerEvaluationTestcaseStatisticCollectionGeneratorLoader.h \
./Source\Control\Loader\CReasonerEvaluationProgramLoader.h \
./Source\Control\Loader\CReasonerEvaluationOntologyExtractionLoader.h \
./Source\Control\Loader\CReasonerEvaluationLoadingTimesComparerLoader.h \
./Source\Control\Loader\CReasonerEvaluationLoader.h \
./Source\Control\Loader\CReasonerEvaluationClassificationTimesComparerLoader.h \
./Source\Control\Loader\CPigenholePrincipleGeneratorLoader.h \
./Source\Control\Loader\COWLlinkHttpServerLoader.h \
./Source\Control\Loader\COWLlinkBatchFileLoader.h \
./Source\Control\Loader\COWLFilesOWLlinkTestcaseGeneratorLoader.h \
./Source\Control\Loader\COWLFilesIncompatibleAxiomChangerLoader.h \
./Source\Control\Loader\CORECoutLogObserverLoader.h \
./Source\Control\Loader\COREBatchProcessingLoader.h \
./Source\Control\Loader\CLoggerConfigurationLoader.h \
./Source\Control\Loader\CLoaderFactory.h \
./Source\Control\Loader\CLoader.h \
./Source\Control\Loader\CLargeJoinTestDataGeneratorLoader.h \
./Source\Control\Loader\CJNICommandProcessorLoader.h \
./Source\Control\Loader\CJNICommandLoader.h \
./Source\Control\Loader\CExperimentalReasonerLoader.h \
./Source\Control\Loader\CDefaultReasonerLoader.h \
./Source\Control\Loader\CDefaultLoaderFactory.h \
./Source\Control\Loader\CCoutLogObserverLoader.h \
./Source\Control\Loader\CConfigurableCoutLogObserverLoader.h \
./Source\Control\Loader\CCommandLineTranlatorHelpLoader.h \
./Source\Control\Loader\CCommandLineLoader.h \
./Source\Control\Loader\CCloser.h \
./Source\Control\Loader\CCLISPARQLBatchProcessingLoader.h \
./Source\Control\Loader\CCLISatisfiabilityBatchProcessingLoader.h \
./Source\Control\Loader\CCLIRealizationBatchProcessingLoader.h \
./Source\Control\Loader\CCLIObjectPropertyClassificationBatchProcessingLoader.h \
./Source\Control\Loader\CCLILoadingBatchProcessingLoader.h \
./Source\Control\Loader\CCLIDataPropertyClassificationBatchProcessingLoader.h \
./Source\Control\Loader\CCLIConsistencyBatchProcessingLoader.h \
./Source\Control\Loader\CCLIClassClassificationBatchProcessingLoader.h \
./Source\Control\Loader\CCLIBatchProcessingLoader.h \
./Source\Control\Loader\CAnalyseReasonerLoader.h \
./Source\Control\Loader\CSPARQLBatchFileLoader.h \
./Source\Logger\LoggerSettings.h \
./Source\Logger\CQtDebugPrintLogObserver.h \
./Source\Logger\COREFilePrintLogObserver.h \
./Source\Logger\COREConsolePrintLogObserver.h \
./Source\Logger\CLogObserverData.h \
./Source\Logger\CLogMessage.h \
./Source\Logger\CLogIdentifier.h \
./Source\Logger\CLogger.h \
./Source\Logger\CLogDomain.h \
./Source\Logger\CConsolePrintLogObserver.h \
./Source\Logger\CConsolePrintConfigurableLogObserver.h \
./Source\Logger\CCallbackRequestLogMessagesContext.h \
./Source\Logger\CAbstractLogObserver.h \
./Source\Logger\Events\CRequestLogMessagesEvent.h \
./Source\Logger\Events\CReleaseLogMessagesEvent.h \
./Source\Logger\Events\CLoggingEvent.h \
./Source\Logger\Events\CConfigureLoggerEvent.h \
./Source\Logger\Record\RecordSettings.h \
./Source\Logger\Record\CContextRecorder.h \
./Source\Logger\Record\CContextRecordData.h \
./Source\Network\NetworkSettings.h \
./Source\Network\CNetworkResponse.h \
./Source\Network\CNetworkRequest.h \
./Source\Network\HTTP\HttpSettings.h \
./Source\Network\HTTP\CQtHttpResponse.h \
./Source\Network\HTTP\CQtHttpRequestParser.h \
./Source\Network\HTTP\CQtHttpRequestBodyOnlyParser.h \
./Source\Network\HTTP\CQtHttpRequest.h \
./Source\Network\HTTP\CQtHttpPooledConnectionHandler.h \
./Source\Network\HTTP\CQtHttpListner.h \
./Source\Network\HTTP\CQtHttpDownloadFileRequest.h \
./Source\Network\HTTP\CQtHttpConnectionHandlerReleaser.h \
./Source\Network\HTTP\CQtHttpConnectionHandlerPooledFactory.h \
./Source\Network\HTTP\CQtHttpConnectionHandlerFactory.h \
./Source\Network\HTTP\CQtHttpConnectionHandler.h \
./Source\Network\HTTP\CHttpResponseExtractor.h \
./Source\Network\HTTP\CHttpResponse.h \
./Source\Network\HTTP\CHttpRequestFactory.h \
./Source\Network\HTTP\CHttpRequest.h \
./Source\Network\HTTP\CQtHttpResponseHandler.h \
./Source\Network\HTTP\CHttpTransactionManager.h \
./Source\Network\HTTP\CQtHttpTransactionManager.h \
./Source\Network\HTTP\Events\CReleaseResponseEvent.h \
./Source\Network\HTTP\Events\CInstallRequestFinishedCallbackEvent.h \
./Source\Network\HTTP\Events\CHttpRequstEvent.h \
./Source\Network\HTTP\Events\CHttpReplyFinishedEvent.h \
./Source\Network\HTTP\Events\CHandleIncomingHttpConnectionEvent.h \
./Source\Network\HTTP\Events\CExtractResponseDataEvent.h \
./Source\Network\HTTP\Events\CExtractResponseDataCallbackEvent.h \
./Source\Network\HTTP\Events\CConnectionReadyReadEvent.h \
./Source\Network\HTTP\Events\CConnectionDisconnectedEvent.h \
./Source\Network\HTTP\Events\CAddResponseFinishedCallbackEvent.h \
./Source\Network\HTTP\Events\CAbortRequestEvent.h \
./Source\Parser\ParserSettings.h \
./Source\Parser\CXMLTestsuiteCommandParser.h \
./Source\Parser\CXMLParsingHandlingContextBase.h \
./Source\Parser\CXMLParsingHandlingContext.h \
./Source\Parser\CXMLOWL2StreamHandler.h \
./Source\Parser\CXMLOWL2Handler.h \
./Source\Parser\CXMLHandlerStackBase.h \
./Source\Parser\CXMLHandlerStack.h \
./Source\Parser\CXMLHandler.h \
./Source\Parser\CTriplesDataBuilder.h \
./Source\Parser\CTBoxAxiomBuilder.h \
./Source\Parser\CStringPrimitiveConverter.h \
./Source\Parser\CSPARQLSimpleUpdateParser.h \
./Source\Parser\CSPARQLSimpleQueryParser.h \
./Source\Parser\CSPARQLSimpleParser.h \
./Source\Parser\CSPARQLSimpleManagementParser.h \
./Source\Parser\CSPARQLSimpleBuildingParser.h \
./Source\Parser\CSPARQLQueryBuilder.h \
./Source\Parser\CSPARQLQtXMLResultParser.h \
./Source\Parser\CSPARQLKnowledgeBaseSplittingOperationParser.h \
./Source\Parser\CSPARQLKnowledgeBaseSplittingOperationData.h \
./Source\Parser\CRDFSimpleTurtleParser.h \
./Source\Parser\CRDFRedlandRaptorParser.h \
./Source\Parser\CRBoxAxiomBuilder.h \
./Source\Parser\CQueryBuilder.h \
./Source\Parser\CQtXMLContentHandlerConverter.h \
./Source\Parser\CParsingUtilities.h \
./Source\Parser\CParsingProgressionRecording.h \
./Source\Parser\CParsingHandlingContext.h \
./Source\Parser\CParsingExpressionSplitter.h \
./Source\Parser\CParseRuleAtom.h \
./Source\Parser\COWLlinkQueryParser.h \
./Source\Parser\COWLlinkQueryExtensionParser.h \
./Source\Parser\COWLlinkQtXMLSimpleQueryParser.h \
./Source\Parser\COWLlinkQtXMLResultParser.h \
./Source\Parser\COWLlinkQtXMLComplexQueryParser.h \
./Source\Parser\COWLlinkQtXMLCommandParser.h \
./Source\Parser\COWL2RDFTurtleAssertionsSimpleParser.h \
./Source\Parser\COWL2QtXMLOntologyStreamParser.h \
./Source\Parser\COWL2QtXMLOntologyStableStreamParser.h \
./Source\Parser\COWL2QtXMLOntologySAXParser.h \
./Source\Parser\COWL2QtXMLOntologyParser.h \
./Source\Parser\COntologyParser.h \
./Source\Parser\COntologyBuilder.h \
./Source\Parser\CKRSSOntologyParser.h \
./Source\Parser\CContinueParsingWaitingCondition.h \
./Source\Parser\CCommandParser.h \
./Source\Parser\CAxiomOntologyBuilder.h \
./Source\Parser\CABoxAxiomBuilder.h \
./Source\Parser\CSPARQLRedlandRasqalQueryParser.h \
./Source\Parser\CQueryParser.h \
./Source\Parser\CSPARQLQueryParser.h \
./Source\Parser\CSPARQLRedlandRasqalReasoningBGPQueryParser.h \
./Source\Parser\CRDFRedlandExternalTriplesDSNConnectingParser.h \
./Source\Parser\CRDFRedlandRaptorSimpleConcurrentParser.h \
./Source\Parser\CSPARQLExtendedMappingBuildingParser.h \
./Source\Parser\CSPARQLBuildingParserTripleData.h \
./Source\Parser\CSPARQLBuildingParserTermData.h \
./Source\Parser\COntologyMultiAutoParsingLoader.h \
./Source\Parser\COntologyQtXMLDocumentParser.h \
./Source\Parser\Expressions\ExpressionSettings.h \
./Source\Parser\Expressions\CVariableAssociator.h \
./Source\Parser\Expressions\CUnorderedPairObjectPropertyTermExpressionAssociator.h \
./Source\Parser\Expressions\CUnorderedPairIndividualTermExpressionAssociator.h \
./Source\Parser\Expressions\CUnorderedPairExpressionAssociator.h \
./Source\Parser\Expressions\CUnorderedPairClassTermExpressionAssociator.h \
./Source\Parser\Expressions\CTransetiveObjectPropertyExpression.h \
./Source\Parser\Expressions\CSymmetricObjectPropertyExpression.h \
./Source\Parser\Expressions\CSubObjectPropertyOfExpression.h \
./Source\Parser\Expressions\CSubExpressionVisitor.h \
./Source\Parser\Expressions\CSubDataPropertyOfExpression.h \
./Source\Parser\Expressions\CSubClassOfExpression.h \
./Source\Parser\Expressions\CSameIndividualExpression.h \
./Source\Parser\Expressions\CRulePropertyAtomTermExpression.h \
./Source\Parser\Expressions\CRuleDifferentIndividualsAtomTermExpression.h \
./Source\Parser\Expressions\CRuleClassAtomTermExpression.h \
./Source\Parser\Expressions\CRuleAtomTermExpression.h \
./Source\Parser\Expressions\CRuleAtomListHeadExpression.h \
./Source\Parser\Expressions\CRuleAtomListExpression.h \
./Source\Parser\Expressions\CRuleAtomListBodyExpression.h \
./Source\Parser\Expressions\CReflexiveObjectPropertyExpression.h \
./Source\Parser\Expressions\CQuerySPARQLBasicGraphPatternExpression.h \
./Source\Parser\Expressions\CQuerySPARQLAskBasicGraphPatternExpression.h \
./Source\Parser\Expressions\CQueryIsObjectPropertySatisfiableExpression.h \
./Source\Parser\Expressions\CQueryIsInstanceOfExpression.h \
./Source\Parser\Expressions\CQueryIsEntailedExpression.h \
./Source\Parser\Expressions\CQueryIsDataPropertySatisfiableExpression.h \
./Source\Parser\Expressions\CQueryIsClassSubsumedByExpression.h \
./Source\Parser\Expressions\CQueryIsClassSatisfiableExpression.h \
./Source\Parser\Expressions\CQueryingTemporaryNamedIndividualExpression.h \
./Source\Parser\Expressions\CQueryingTemporaryInverseObjectPropertyOfExpression.h \
./Source\Parser\Expressions\CQueryGetTypesExpression.h \
./Source\Parser\Expressions\CQueryGetSuperObjectPropertiesExpression.h \
./Source\Parser\Expressions\CQueryGetSuperDataPropertiesExpression.h \
./Source\Parser\Expressions\CQueryGetSuperClassesExpression.h \
./Source\Parser\Expressions\CQueryGetSubObjectPropertyHierarchyExpression.h \
./Source\Parser\Expressions\CQueryGetSubObjectPropertiesExpression.h \
./Source\Parser\Expressions\CQueryGetSubDataPropertyHierarchyExpression.h \
./Source\Parser\Expressions\CQueryGetSubDataPropertiesExpression.h \
./Source\Parser\Expressions\CQueryGetSubClassHierarchyExpression.h \
./Source\Parser\Expressions\CQueryGetSubClassesExpression.h \
./Source\Parser\Expressions\CQueryGetSameIndividualsExpression.h \
./Source\Parser\Expressions\CQueryGetObjectPropertyTargetsExpression.h \
./Source\Parser\Expressions\CQueryGetObjectPropertySourcesExpression.h \
./Source\Parser\Expressions\CQueryGetObjectPropertiesOfTargetExpression.h \
./Source\Parser\Expressions\CQueryGetObjectPropertiesOfSourceExpression.h \
./Source\Parser\Expressions\CQueryGetObjectPropertiesBetweenExpression.h \
./Source\Parser\Expressions\CQueryGetNondeterministicIndividualsExpression.h \
./Source\Parser\Expressions\CQueryGetNondeterministicClassAssertionsExpression.h \
./Source\Parser\Expressions\CQueryGetInstancesExpression.h \
./Source\Parser\Expressions\CQueryGetFlattenedTypesExpression.h \
./Source\Parser\Expressions\CQueryGetFlattenedObjectPropertyTargetsExpression.h \
./Source\Parser\Expressions\CQueryGetFlattenedObjectPropertySourcesExpression.h \
./Source\Parser\Expressions\CQueryGetFlattenedInstancesExpression.h \
./Source\Parser\Expressions\CQueryGetEquivalentObjectPropertiesExpression.h \
./Source\Parser\Expressions\CQueryGetEquivalentDataPropertiesExpression.h \
./Source\Parser\Expressions\CQueryGetEquivalentClassesExpression.h \
./Source\Parser\Expressions\CQueryGetDeterministicIndividualsExpression.h \
./Source\Parser\Expressions\CQueryGetDeterministicClassAssertionsExpression.h \
./Source\Parser\Expressions\CQueryGetClassAssertionsExpression.h \
./Source\Parser\Expressions\CQueryExpression.h \
./Source\Parser\Expressions\CQueryAreClassesEquivalentExpression.h \
./Source\Parser\Expressions\CQueryAreClassesDisjointExpression.h \
./Source\Parser\Expressions\CPrecedentBuildPropertyExpression.h \
./Source\Parser\Expressions\CPrecedentBuildIndividualExpression.h \
./Source\Parser\Expressions\CPrecedentBuildClassExpression.h \
./Source\Parser\Expressions\CPairExpressionAssociator.h \
./Source\Parser\Expressions\CPairExpression.h \
./Source\Parser\Expressions\COrderingVariableExpression.h \
./Source\Parser\Expressions\COrderingTermExpression.h \
./Source\Parser\Expressions\COrderedPairObjectPropertyTermExpressionAssociator.h \
./Source\Parser\Expressions\COrderedPairIndividualTermExpressionAssociator.h \
./Source\Parser\Expressions\COrderedPairExpressionAssociator.h \
./Source\Parser\Expressions\COrderedPairDataPropertyTermExpressionAssociator.h \
./Source\Parser\Expressions\COrderedPairClassTermExpressionAssociator.h \
./Source\Parser\Expressions\COrderedListVariableAssociator.h \
./Source\Parser\Expressions\COrderedListOrderingTermExpressionAssociator.h \
./Source\Parser\Expressions\COrderedListObjectPropertyTermExpressionAssociator.h \
./Source\Parser\Expressions\COrderedListNamedIndividualVariableExpressionAssociator.h \
./Source\Parser\Expressions\COrderedListIndividualVariableExpressionAssociator.h \
./Source\Parser\Expressions\COrderedListExpressionAssociator.h \
./Source\Parser\Expressions\CObjectUnionOfExpression.h \
./Source\Parser\Expressions\CObjectSomeValuesFromExpression.h \
./Source\Parser\Expressions\CObjectPropertyTermExpressionAssociator.h \
./Source\Parser\Expressions\CObjectPropertyTermExpression.h \
./Source\Parser\Expressions\CObjectPropertyRangeExpression.h \
./Source\Parser\Expressions\CObjectPropertyExpression.h \
./Source\Parser\Expressions\CObjectPropertyDomainExpression.h \
./Source\Parser\Expressions\CObjectPropertyChainExpression.h \
./Source\Parser\Expressions\CObjectPropertyAxiomExpression.h \
./Source\Parser\Expressions\CObjectPropertyAssertionExpression.h \
./Source\Parser\Expressions\CObjectOneOfExpression.h \
./Source\Parser\Expressions\CObjectMinCardinalityExpression.h \
./Source\Parser\Expressions\CObjectMaxCardinalityExpression.h \
./Source\Parser\Expressions\CObjectIntersectionOfExpression.h \
./Source\Parser\Expressions\CObjectIndividualVariableTermExpressionAssociator.h \
./Source\Parser\Expressions\CObjectIndividualVariableExpression.h \
./Source\Parser\Expressions\CObjectHasValueExpression.h \
./Source\Parser\Expressions\CObjectHasSelfExpression.h \
./Source\Parser\Expressions\CObjectExpression.h \
./Source\Parser\Expressions\CObjectExactlyCardinalityExpression.h \
./Source\Parser\Expressions\CObjectComplementOfExpression.h \
./Source\Parser\Expressions\CObjectCardinalityExpression.h \
./Source\Parser\Expressions\CObjectAllValuesFromExpression.h \
./Source\Parser\Expressions\CNegativeObjectPropertyAssertionExpression.h \
./Source\Parser\Expressions\CNegativeDataPropertyAssertionExpression.h \
./Source\Parser\Expressions\CNamedIndividualVariableExpression.h \
./Source\Parser\Expressions\CNamedIndividualExpression.h \
./Source\Parser\Expressions\CNameAssociator.h \
./Source\Parser\Expressions\CListVariableAssociator.h \
./Source\Parser\Expressions\CListRuleAtomTermExpressionAssociator.h \
./Source\Parser\Expressions\CListObjectPropertyTermExpressionAssociator.h \
./Source\Parser\Expressions\CListIndividualTermExpressionAssociator.h \
./Source\Parser\Expressions\CListFilteringExpressionAssociator.h \
./Source\Parser\Expressions\CListExpressionAssociator.h \
./Source\Parser\Expressions\CListExpression.h \
./Source\Parser\Expressions\CListDataRangeTermExpressionAssociator.h \
./Source\Parser\Expressions\CListDataPropertyTermExpressionAssociator.h \
./Source\Parser\Expressions\CListDataFacetRestrictionExpressionAssociator.h \
./Source\Parser\Expressions\CListClassVariableTermExpressionAssociator.h \
./Source\Parser\Expressions\CListClassTermExpressionAssociator.h \
./Source\Parser\Expressions\CListAxiomExpressionAssociator.h \
./Source\Parser\Expressions\CIrreflexiveObjectPropertyExpression.h \
./Source\Parser\Expressions\CInverseObjectPropertyOfExpression.h \
./Source\Parser\Expressions\CInverseObjectPropertiesExpression.h \
./Source\Parser\Expressions\CInverseFunctionalObjectPropertyExpression.h \
./Source\Parser\Expressions\CIndividualVariableExpression.h \
./Source\Parser\Expressions\CIndividualTermExpressionAssociator.h \
./Source\Parser\Expressions\CIndividualTermExpression.h \
./Source\Parser\Expressions\CIndividualExpression.h \
./Source\Parser\Expressions\CFunctionalObjectPropertyExpression.h \
./Source\Parser\Expressions\CFunctionalDataPropertyExpression.h \
./Source\Parser\Expressions\CFilteringTermExpression.h \
./Source\Parser\Expressions\CFilteringComparisonDataLiteralExpression.h \
./Source\Parser\Expressions\CExpressionVariable.h \
./Source\Parser\Expressions\CExpressionHashMixer.h \
./Source\Parser\Expressions\CExpressionEntity.h \
./Source\Parser\Expressions\CExpressionAssociator.h \
./Source\Parser\Expressions\CEquivalentObjectPropertiesExpression.h \
./Source\Parser\Expressions\CEquivalentDataPropertiesExpression.h \
./Source\Parser\Expressions\CEquivalentClassesExpression.h \
./Source\Parser\Expressions\CEntityAssociator.h \
./Source\Parser\Expressions\CEntailmentAxiomExpressionAssociation.h \
./Source\Parser\Expressions\CDisjointUnionExpression.h \
./Source\Parser\Expressions\CDisjointObjectPropertiesExpression.h \
./Source\Parser\Expressions\CDisjointDataPropertiesExpression.h \
./Source\Parser\Expressions\CDisjointClassesExpression.h \
./Source\Parser\Expressions\CDifferentIndividualsExpression.h \
./Source\Parser\Expressions\CDeclarationAxiomExpression.h \
./Source\Parser\Expressions\CDataValueVariableExpression.h \
./Source\Parser\Expressions\CDataUnionOfExpression.h \
./Source\Parser\Expressions\CDatatypeRestrictionExpression.h \
./Source\Parser\Expressions\CDatatypeExpressionAssociator.h \
./Source\Parser\Expressions\CDatatypeExpression.h \
./Source\Parser\Expressions\CDataSomeValuesFromExpression.h \
./Source\Parser\Expressions\CDataRangeTermExpressionAssociator.h \
./Source\Parser\Expressions\CDataRangeTermExpression.h \
./Source\Parser\Expressions\CDataPropertyTermExpressionAssociator.h \
./Source\Parser\Expressions\CDataPropertyTermExpression.h \
./Source\Parser\Expressions\CDataPropertyRangeExpression.h \
./Source\Parser\Expressions\CDataPropertyExpression.h \
./Source\Parser\Expressions\CDataPropertyDomainExpression.h \
./Source\Parser\Expressions\CDataPropertyAxiomExpression.h \
./Source\Parser\Expressions\CDataPropertyAssertionExpression.h \
./Source\Parser\Expressions\CDataOneOfExpression.h \
./Source\Parser\Expressions\CDataMinCardinalityExpression.h \
./Source\Parser\Expressions\CDataMaxCardinalityExpression.h \
./Source\Parser\Expressions\CDataLiteralVariableExpressionAssociator.h \
./Source\Parser\Expressions\CDataLiteralVariableExpression.h \
./Source\Parser\Expressions\CDataLiteralTermExpressionAssociator.h \
./Source\Parser\Expressions\CDataLiteralTermExpression.h \
./Source\Parser\Expressions\CDataLiteralExpressionAssociator.h \
./Source\Parser\Expressions\CDataLiteralExpression.h \
./Source\Parser\Expressions\CDataLexicalValueExpressionAssociator.h \
./Source\Parser\Expressions\CDataLexicalValueExpression.h \
./Source\Parser\Expressions\CDataIntersectionOfExpression.h \
./Source\Parser\Expressions\CDataHasValueExpression.h \
./Source\Parser\Expressions\CDataFacetRestrictionExpressionAssociator.h \
./Source\Parser\Expressions\CDataFacetRestrictionExpression.h \
./Source\Parser\Expressions\CDataFacetExpressionAssociator.h \
./Source\Parser\Expressions\CDataFacetExpression.h \
./Source\Parser\Expressions\CDataExactCardinalityExpression.h \
./Source\Parser\Expressions\CDataComplementOfExpression.h \
./Source\Parser\Expressions\CDataCardinalityExpression.h \
./Source\Parser\Expressions\CDataAllValuesFromExpression.h \
./Source\Parser\Expressions\CClassTermExpressionAssociator.h \
./Source\Parser\Expressions\CClassTermExpression.h \
./Source\Parser\Expressions\CClassExpressionAssociator.h \
./Source\Parser\Expressions\CClassExpression.h \
./Source\Parser\Expressions\CClassAxiomExpression.h \
./Source\Parser\Expressions\CClassAssertionExpression.h \
./Source\Parser\Expressions\CCardinalityAssociator.h \
./Source\Parser\Expressions\CAxiomExpression.h \
./Source\Parser\Expressions\CAsymmetricObjectPropertyExpression.h \
./Source\Parser\Expressions\CAssertionAxiomExpression.h \
./Source\Parser\Expressions\CAnonymousIndividualVariableExpression.h \
./Source\Parser\Expressions\CAnonymousIndividualExpression.h \
./Source\Parser\Expressions\CQuerySPARQLSelectBasicGraphPatternExpression.h \
./Source\Parser\Expressions\CBuildExpression.h \
./Source\Parser\Expressions\CClassVariableExpression.h \
./Source\Parser\Expressions\CObjectPropertyVariableExpression.h \
./Source\Parser\Expressions\CDataPropertyVariableExpression.h \
./Source\Parser\Expressions\CPropertyVariableExpression.h \
./Source\Parser\Expressions\CPropertyTermExpression.h \
./Source\Parser\FunctionalJAVACC\TokenManager.h \
./Source\Parser\FunctionalJAVACC\TokenMgrError.h \
./Source\Parser\FunctionalJAVACC\OWL2FunctionalStyleParserTokenManager.h \
./Source\Parser\FunctionalJAVACC\CharStream.h \
./Source\Parser\FunctionalJAVACC\ParseException.h \
./Source\Parser\FunctionalJAVACC\JavaCC.h \
./Source\Parser\FunctionalJAVACC\ErrorHandler.h \
./Source\Parser\FunctionalJAVACC\Token.h \
./Source\Parser\FunctionalJAVACC\OWL2FunctionalStyleParserConstants.h \
./Source\Parser\FunctionalJAVACC\OWL2FunctionalStyleParser.h \
./Source\Parser\FunctionalJAVACC\FunctionalJAVACCSettings.h \
./Source\Parser\FunctionalJAVACC\CTokenManager.h \
./Source\Parser\FunctionalJAVACC\CTokenBase.h \
./Source\Parser\FunctionalJAVACC\CQtIODeviceStreamReader.h \
./Source\Parser\FunctionalJAVACC\COWL2FunctionalStyleParserTokenManager.h \
./Source\Parser\FunctionalJAVACC\COWL2FunctionalStyleParserErrorHandler.h \
./Source\Parser\FunctionalJAVACC\COWL2FunctionalJAVACCOntologyStreamParser.h \
./Source\Parser\FunctionalJAVACC\CJAVACCParser.h \
./Source\Parser\FunctionalJAVACC\CConcreteOWL2FunctionalStyleParser.h \
./Source\Reasoner\ReasonerSettings.h \
./Source\Reasoner\Answerer\CRequirementWaitingDependencyData.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableRolePropagationReplacementItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableRolePropagationProcessingRealizationIteratorData.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableRolePropagationJoiningItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableRolePropagationItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableRolePropagationAbstractItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableReductionItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariablePreAbsorptionBasedQueryPartHandler.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableJoiningItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableJoiningHashMemoryManaged.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableJoiningHasher.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableJoiningHash.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableJoiningData.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableJoiningBindingsCardinalitiesDataLinker.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableJoiningBindingPositionMapping.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualUpdateCardinalityLinker.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualMappingsMultiHashPart.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualMappingsMultiHash.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualMappingsHash.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualMappings.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualBindingsHasher.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualBindingsCardinalityLinker.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualBindingsCardinalityBatchLinker.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualBindingsCardinality.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualBindings.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableDataLiteralExtensionItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableDataLiteralBaseItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableConceptBaseItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableCompositionSingleDependenceItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableCompositionItemVariableIndexMapping.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableCompositionItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableCompositionItemVariableExpressionMapping.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableCompositionItemDependence.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableBindingAbsorptionBasedQueryPartHandler.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableAbstractNonDisconnectingAbsorptionBasedQueryPartHandler.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableAbstractAbsorptionBasedQueryPartHandler.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableAbsorptionBasedHandlingQueryPartData.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableAbsorptionBasedHandlingNeighbouringData.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableAbsorptionBasedHandlingExtensionItem.h \
./Source\Reasoner\Answerer\COptimizedComplexConceptStepAnsweringItem.h \
./Source\Reasoner\Answerer\COptimizedComplexExpressionOntologyAnsweringItem.h \
./Source\Reasoner\Answerer\COptimizedComplexConceptItemVisitor.h \
./Source\Reasoner\Answerer\COptimizedComplexConceptItem.h \
./Source\Reasoner\Answerer\COptimizedComplexConceptInstanziatedIndividualItemLinker.h \
./Source\Reasoner\Answerer\COptimizedComplexConceptInstanziatedIndividualItemHasher.h \
./Source\Reasoner\Answerer\COptimizedComplexConceptInstanziatedIndividualItemHash.h \
./Source\Reasoner\Answerer\COptimizedComplexExpressionAnsweringHandler.h \
./Source\Reasoner\Answerer\CConfigurationAnsweringHandlerFactory.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedQueryMaterialization.h \
./Source\Reasoner\Answerer\CEntailmentVariableBuildingItemData.h \
./Source\Reasoner\Answerer\COntologyAnsweringItem.h \
./Source\Reasoner\Answerer\CMappingsInstancesComputationMode.h \
./Source\Reasoner\Answerer\CFirstQueuedAnsweringHandlerProvider.h \
./Source\Reasoner\Answerer\CEntailmentQueryProcessingData.h \
./Source\Reasoner\Answerer\CComputedItemDataNotificationLinker.h \
./Source\Reasoner\Answerer\AnswererSettings.h \
./Source\Reasoner\Answerer\CComplexQueryExpressionProcessingData.h \
./Source\Reasoner\Answerer\CComplexQueryMaterializationData.h \
./Source\Reasoner\Answerer\CComplexQueryFinishingBuildingVariableCompositionsItemData.h \
./Source\Reasoner\Answerer\CComplexConceptStepInstanceComputationProcess.h \
./Source\Reasoner\Answerer\CComplexConceptStepComputationProcess.h \
./Source\Reasoner\Answerer\CComplexConceptItemComputationProcess.h \
./Source\Reasoner\Answerer\CAnsweringStatisticsCollectionStrings.h \
./Source\Reasoner\Answerer\CAnsweringStatistics.h \
./Source\Reasoner\Answerer\CAnsweringPropagationSteeringController.h \
./Source\Reasoner\Answerer\CAnsweringPropagationSteeringAbsorptionExtensionItemEntailmentController.h \
./Source\Reasoner\Answerer\CAnsweringPropagationSteeringAbsorptionExtensionItemController.h \
./Source\Reasoner\Answerer\CAnsweringPropagationSteeringAbsorptionExtensionItemBindingController.h \
./Source\Reasoner\Answerer\CAnsweringPropagationSteeringAbsorptionEntailmentController.h \
./Source\Reasoner\Answerer\CAnsweringProgress.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataVariableBindingPropagationsData.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataVariableBindingPropagations.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataRequirementCompletedSubClassRealization.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataRequirementCompletedRoleTargetsRealization.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataRequirementCompletedRoleAssertionEntailment.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataRequirementCompletedRealization.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataRequirementCompletedConceptAssertionEntailment.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataRequirementCompleted.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataObserver.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataInstancePropagationsData.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataInstancePossiblePropagationsData.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataInstanceCertainPropagationsData.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataHandlingCallback.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationPossibleClassSubsumersData.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationPossibleClassSubsumers.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationMaterializedConcepts.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedVariableBindingPropagations.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedVariableBindingEntailment.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedVariableBindingConfirmation.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedSubsumptionSuperClass.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedSubsumptionSubClass.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedSatisfiable.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedInstanceItem.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedInstanceIndividual.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedInstanceEntailment.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedInstanceCandidatePropagationItem.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompleted.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationClassSubsumers.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationAdapter.h \
./Source\Reasoner\Answerer\CAnsweringMessageData.h \
./Source\Reasoner\Answerer\CAnsweringManagerThread.h \
./Source\Reasoner\Answerer\CAnsweringManagerQueryData.h \
./Source\Reasoner\Answerer\CAnsweringManager.h \
./Source\Reasoner\Answerer\CAnsweringHandlingStatistics.h \
./Source\Reasoner\Answerer\CAnsweringHandlerProvider.h \
./Source\Reasoner\Answerer\CAnsweringHandlerFactory.h \
./Source\Reasoner\Answerer\CAnsweringHandler.h \
./Source\Reasoner\Answerer\CAnsweringCalculationStatisticsCollectionStrings.h \
./Source\Reasoner\Answerer\CAnsweringCalculationStatisticsCollection.h \
./Source\Reasoner\Answerer\CAnsweringCalculationHandler.h \
./Source\Reasoner\Answerer\CAnswererThread.h \
./Source\Reasoner\Answerer\CAnswererContext.h \
./Source\Reasoner\Answerer\CComplexQueryProcessingData.h \
./Source\Reasoner\Answerer\COptimizedComplexCompositionAnsweringHandler.h \
./Source\Reasoner\Answerer\COptimizedComplexCompositionOntologyAnsweringItem.h \
./Source\Reasoner\Answerer\CComplexQueryCompositionProcessingData.h \
./Source\Reasoner\Answerer\CComplexQueryCompositionRedlandRasqalProcessingData.h \
./Source\Reasoner\Answerer\COptimizedComplexCompositionRedlandRasqalAnsweringHandler.h \
./Source\Reasoner\Answerer\CRedlandRasqalSubQueryProcessingData.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableRoleSubSuperItem.h \
./Source\Reasoner\Answerer\CRedlandRasqalModelSubQueryResolver.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataRequirementCompletedSubQueryAnswering.h \
./Source\Reasoner\Answerer\CRedlandRasqalSubQueryTripleResolvingData.h \
./Source\Reasoner\Answerer\CRedlandRasqalSubQueryBindingPositionResolvingHashData.h \
./Source\Reasoner\Answerer\CRedlandRasqalSubQueryBindingPositionResolvingHash.h \
./Source\Reasoner\Answerer\CRedlandRasqalSubQueryBoundNodeResolvingHash.h \
./Source\Reasoner\Answerer\CRedlandRasqalSubQueryBoundNodeResolvingHashData.h \
./Source\Reasoner\Answerer\CRedlandRasqalLiteralHasher.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableExtractionItem.h \
./Source\Reasoner\Answerer\CAnsweringSplitEntailmentTestingCancellationAdapter.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableCompositionItemRoleSamplingData.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableRolePropagationProcessingRealizationIteratorDataBase.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableRolePropagationProcessingRealizationIteratorDataHashMemoryManaged.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableRolePropagationProcessingRealizationIteratorDataMemoryManaged.h \
./Source\Reasoner\Answerer\CAnsweringPropagationExtendedSteeringController.h \
./Source\Reasoner\Answerer\CAnsweringSplitPropagationTestingVariableData.h \
./Source\Reasoner\Answerer\CAnsweringSplitPropagationTestingVariableBindingData.h \
./Source\Reasoner\Answerer\CAnsweringSplitPropagationTestControllingItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableJoiningWithRemainingHasher.h \
./Source\Reasoner\Answerer\CCacheAnswersWeightedUsageCostItemData.h \
./Source\Reasoner\Answerer\CCacheAnswersWeightedUsageCostItem.h \
./Source\Reasoner\Answerer\CAnsweringPropagationSteeringAbsorptionPropagationController.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataRequirementCompletedSubClassAxiomEntailment.h \
./Source\Reasoner\Answerer\CAnsweringMessageDataCalculationCompletedClassSubsumption.h \
./Source\Reasoner\Answerer\COptimizedComplexBuildingIndividualVariableCompositionsItem.h \
./Source\Reasoner\Answerer\COptimizedComplexBuildingClassVariableCompositionsItem.h \
./Source\Reasoner\Answerer\COptimizedComplexBuildingVariableCompositionsItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableConceptSubSuperItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableSubSuperClassesPropagationItem.h \
./Source\Reasoner\Answerer\COptimizedComplexBuildingPropertyVariableCompositionsItem.h \
./Source\Reasoner\Answerer\COptimizedComplexBuildingObjectPropertyVariableCompositionsItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableSubSuperPropertiesPropagationItem.h \
./Source\Reasoner\Answerer\COptimizedComplexBuildingIndividualMixedVariableCompositionsItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualTypeExtensionItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualTypeExtensionProcessingRealizationData.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableCompositionItemUpdateData.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualNeighboringPropertyExtensionItem.h \
./Source\Reasoner\Answerer\COptimizedComplexVariableIndividualPropertyExtensionProcessingRealizationData.h \
./Source\Reasoner\Answerer\Events\CAnsweringRequirementCompletedEvent.h \
./Source\Reasoner\Answerer\Events\CAnsweringPreparedEvent.h \
./Source\Reasoner\Answerer\Events\CAnsweringOntologyPreparationEvent.h \
./Source\Reasoner\Answerer\Events\CAnsweringMessageEvent.h \
./Source\Reasoner\Answerer\Events\CAnsweringInitializingEvent.h \
./Source\Reasoner\Answerer\Events\CAnsweringHandlerPreparationEvent.h \
./Source\Reasoner\Answerer\Events\CAnsweringComplexQueryCompletedEvent.h \
./Source\Reasoner\Answerer\Events\CAnsweringCalculationCompletedEvent.h \
./Source\Reasoner\Answerer\Events\CAnswerComplexQueryEvent.h \
./Source\Reasoner\Answerer\Composition\CAbstractVariableMappingsCompositionComputator.h \
./Source\Reasoner\Answerer\Composition\CAbstractVariableMappingsCompositionJoinComputator.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionBaseBatchLinkerVectorData.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionBaseBatchLinkerVector.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionJoinComputator.h \
./Source\Reasoner\Answerer\Composition\CompositionSettings.h \
./Source\Reasoner\Answerer\Composition\CAbstractVariableMappingsCompositionItemRequirementProcessor.h \
./Source\Reasoner\Answerer\Composition\CAbstractVariableMappingsCompositionPropagationComputator.h \
./Source\Reasoner\Answerer\Composition\CSequentialVariableMappingsCompositionJoinComputator.h \
./Source\Reasoner\Answerer\Composition\CSequentialVariableMappingsCompositionPropagationComputator.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionJoinMappedKeysBindingsCardinalityLinker.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionJoinMappedJoinedBindingsCardinalityLinker.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionJoinBindingsCardinalityLinkerBatchLinker.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionBaseBindingsCardinalityLinkerBatchLinker.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionPropagationBindingsCardinalityLinkerBatchLinker.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionPropagationComputator.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionPropagationMappedKeyBindingsCardinalityLinker.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionPropagationMappedPropagatedBindingsCardinalityLinker.h \
./Source\Reasoner\Answerer\Composition\CQtConcurrentVariableMappingsCompositionPropagationRealizationSchedulingBatchLinkerVector.h \
./Source\Reasoner\Answerer\Conclusion\ConclusionSettings.h \
./Source\Reasoner\Answerer\Conclusion\CAbstractComplexQueryFinishingHandler.h \
./Source\Reasoner\Answerer\Conclusion\CSequentialStreamingComplexQueryFinishingHandler.h \
./Source\Reasoner\Answerer\Conclusion\CQtConcurrentStreamingComplexQueryFinishingHandler.h \
./Source\Reasoner\Answerer\Conclusion\CVariableBindingsQueryResultWriter.h \
./Source\Reasoner\Answerer\Conclusion\CAbstractStreamingComplexQueryFinishingHandler.h \
./Source\Reasoner\Classification\CPropertyRoleClassification.h \
./Source\Reasoner\Classification\ClassificationSettings.h \
./Source\Reasoner\Classification\CClassificationStatisticsCollectionStrings.h \
./Source\Reasoner\Classification\CClassificationStatistics.h \
./Source\Reasoner\Classification\CClassificationCalculationStatisticsCollection.h \
./Source\Reasoner\Classification\CClassification.h \
./Source\Reasoner\Classification\CClassConceptClassification.h \
./Source\Reasoner\Classifier\CSubsumptionClassifierThread.h \
./Source\Reasoner\Classifier\CSubsumptionClassifierFactory.h \
./Source\Reasoner\Classifier\CSubsumptionClassifier.h \
./Source\Reasoner\Classifier\CPropertyRoleClassifiedCallbackDataContext.h \
./Source\Reasoner\Classifier\CPropertyPossibleSubsumptionMapIterator.h \
./Source\Reasoner\Classifier\CPropertyPossibleSubsumptionMap.h \
./Source\Reasoner\Classifier\CPropertyClassificationComputationItem.h \
./Source\Reasoner\Classifier\CPrecomputedSaturationSubsumerExtractor.h \
./Source\Reasoner\Classifier\CPartialPruningTaxonomy.h \
./Source\Reasoner\Classifier\CPartialPruningHierarchyNode.h \
./Source\Reasoner\Classifier\COptimizedSubClassSubsumptionClassifierThread.h \
./Source\Reasoner\Classifier\COptimizedSubClassSatisfiableTestingItem.h \
./Source\Reasoner\Classifier\COptimizedSubClassOntologyClassificationItem.h \
./Source\Reasoner\Classifier\COptimizedKPSetRoleTestingItem.h \
./Source\Reasoner\Classifier\COptimizedKPSetRoleSubsumptionClassifierThread.h \
./Source\Reasoner\Classifier\COptimizedKPSetRolePossibleSubsumptionMapIterator.h \
./Source\Reasoner\Classifier\COptimizedKPSetRolePossibleSubsumptionMap.h \
./Source\Reasoner\Classifier\COptimizedKPSetRolePossibleSubsumptionData.h \
./Source\Reasoner\Classifier\COptimizedKPSetRoleOntologyClassificationItem.h \
./Source\Reasoner\Classifier\COptimizedKPSetClassTestingItem.h \
./Source\Reasoner\Classifier\COptimizedKPSetClassSubsumptionClassifierThread.h \
./Source\Reasoner\Classifier\COptimizedKPSetClassPossibleSubsumptionMapIterator.h \
./Source\Reasoner\Classifier\COptimizedKPSetClassPossibleSubsumptionMap.h \
./Source\Reasoner\Classifier\COptimizedKPSetClassPossibleSubsumptionData.h \
./Source\Reasoner\Classifier\COptimizedKPSetClassOntologyClassificationItem.h \
./Source\Reasoner\Classifier\COptimizedConceptSaturationSatisfiableTestingItem.h \
./Source\Reasoner\Classifier\COptimizedClassExtractedSaturationSubsumptionClassifierThread.h \
./Source\Reasoner\Classifier\COptimizedClassExtractedSaturationSatisfiableTestingItem.h \
./Source\Reasoner\Classifier\COptimizedClassExtractedSaturationOntologyClassificationItem.h \
./Source\Reasoner\Classifier\COntologyPropertyRoleClassificationItem.h \
./Source\Reasoner\Classifier\COntologyClassificationItem.h \
./Source\Reasoner\Classifier\COntologyClassClassificationItem.h \
./Source\Reasoner\Classifier\CNodeTraversalOrderClassificationItem.h \
./Source\Reasoner\Classifier\CNodeTopDownTraversalClassificationItem.h \
./Source\Reasoner\Classifier\CNodePredecessorPositionClassificationItem.h \
./Source\Reasoner\Classifier\CNodeChildrenOrderClassificationItem.h \
./Source\Reasoner\Classifier\CNodeBottomUpTraversalClassificationItem.h \
./Source\Reasoner\Classifier\CNodeBlockedClassificationItem.h \
./Source\Reasoner\Classifier\ClassifierSettings.h \
./Source\Reasoner\Classifier\CIncrementalKPSetClassSubsumptionClassifierThread.h \
./Source\Reasoner\Classifier\CIncrementalKPSetClassOntologyClassificationItem.h \
./Source\Reasoner\Classifier\CConfigDependedSubsumptionClassifierFactory.h \
./Source\Reasoner\Classifier\CConceptSubsumerObserver.h \
./Source\Reasoner\Classifier\CConceptSatisfiableObserver.h \
./Source\Reasoner\Classifier\CConceptNegationOverRoleTuble.h \
./Source\Reasoner\Classifier\CClassSubsumptionClassifierContext.h \
./Source\Reasoner\Classifier\CClassPossibleSubsumptionMapIterator.h \
./Source\Reasoner\Classifier\CClassPossibleSubsumptionMap.h \
./Source\Reasoner\Classifier\CClassifyingCallbackDataContext.h \
./Source\Reasoner\Classifier\CClassifierStatistics.h \
./Source\Reasoner\Classifier\CClassifiedCallbackDataContext.h \
./Source\Reasoner\Classifier\CClassificationUpdatePossiblePropertySubsumptionMessageData.h \
./Source\Reasoner\Classifier\CClassificationUpdatePossibleClassSubsumptionMessageData.h \
./Source\Reasoner\Classifier\CClassificationSatisfiablePossibleSubsumptionCalculationConceptReferenceLinking.h \
./Source\Reasoner\Classifier\CClassificationSatisfiableCalculationData.h \
./Source\Reasoner\Classifier\CClassificationSatisfiableCalculationConceptReferenceLinking.h \
./Source\Reasoner\Classifier\CClassificationPseudoModelIdentifierMessageData.h \
./Source\Reasoner\Classifier\CClassificationPropertySubsumptionMessageData.h \
./Source\Reasoner\Classifier\CClassificationProgress.h \
./Source\Reasoner\Classifier\CClassificationMessageDataObserver.h \
./Source\Reasoner\Classifier\CClassificationMessageData.h \
./Source\Reasoner\Classifier\CClassificationManager.h \
./Source\Reasoner\Classifier\CClassificationInitializePossiblePropertySubsumptionMessageData.h \
./Source\Reasoner\Classifier\CClassificationInitializePossiblePropertySubsumptionData.h \
./Source\Reasoner\Classifier\CClassificationInitializePossibleClassSubsumptionMessageData.h \
./Source\Reasoner\Classifier\CClassificationInitializePossibleClassSubsumptionData.h \
./Source\Reasoner\Classifier\CClassificationConceptReferenceLinking.h \
./Source\Reasoner\Classifier\CClassificationComputationItem.h \
./Source\Reasoner\Classifier\CClassificationClassSubsumptionMessageData.h \
./Source\Reasoner\Classifier\CClassificationClassPseudoModelRoleMap.h \
./Source\Reasoner\Classifier\CClassificationClassPseudoModelRoleData.h \
./Source\Reasoner\Classifier\CClassificationClassPseudoModelHash.h \
./Source\Reasoner\Classifier\CClassificationClassPseudoModelDeterministicFlag.h \
./Source\Reasoner\Classifier\CClassificationClassPseudoModelData.h \
./Source\Reasoner\Classifier\CClassificationClassPseudoModelConceptMap.h \
./Source\Reasoner\Classifier\CClassificationClassPseudoModelConceptData.h \
./Source\Reasoner\Classifier\CClassificationClassPseudoModel.h \
./Source\Reasoner\Classifier\CClassificationCalculationSupport.h \
./Source\Reasoner\Classifier\CClassClassificationComputationItem.h \
./Source\Reasoner\Classifier\Events\CTestCalculatedCallbackEvent.h \
./Source\Reasoner\Classifier\Events\COntologyTellClassificationMessageEvent.h \
./Source\Reasoner\Classifier\Events\CClassifyOntologyEvent.h \
./Source\Reasoner\Classifier\Events\CCallbackClassifiedOntologyEvent.h \
./Source\Reasoner\Consistence\CSaturationData.h \
./Source\Reasoner\Consistence\CPrecomputationStatistics.h \
./Source\Reasoner\Consistence\CPrecomputation.h \
./Source\Reasoner\Consistence\ConsistenceSettings.h \
./Source\Reasoner\Consistence\CConsistenceStatisticsCollectionStrings.h \
./Source\Reasoner\Consistence\CConsistenceStatistics.h \
./Source\Reasoner\Consistence\CConsistenceData.h \
./Source\Reasoner\Consistence\CConsistenceCalculationStatisticsCollection.h \
./Source\Reasoner\Consistence\CConsistence.h \
./Source\Reasoner\Consistiser\CTotallyPrecomputationThread.h \
./Source\Reasoner\Consistiser\CTotallyOntologyPrecomputationItem.h \
./Source\Reasoner\Consistiser\CSaturationPrecomputationTestingItem.h \
./Source\Reasoner\Consistiser\CSaturationObserver.h \
./Source\Reasoner\Consistiser\CSaturationIndividualReferenceLinking.h \
./Source\Reasoner\Consistiser\CSaturationIndividualDataItem.h \
./Source\Reasoner\Consistiser\CSaturationIndividualAnalysationObserver.h \
./Source\Reasoner\Consistiser\CSaturationConceptReferenceLinking.h \
./Source\Reasoner\Consistiser\CSaturationConceptDataItem.h \
./Source\Reasoner\Consistiser\CSaturationCommonDisjunctConceptsExtractor.h \
./Source\Reasoner\Consistiser\CPrecomputatorStatistics.h \
./Source\Reasoner\Consistiser\CPrecomputator.h \
./Source\Reasoner\Consistiser\CPrecomputationThread.h \
./Source\Reasoner\Consistiser\CPrecomputationTestingStep.h \
./Source\Reasoner\Consistiser\CPrecomputationTestingItem.h \
./Source\Reasoner\Consistiser\CPrecomputationContext.h \
./Source\Reasoner\Consistiser\CPrecomputationCallbackDataContext.h \
./Source\Reasoner\Consistiser\COntologyPrecomputationItem.h \
./Source\Reasoner\Consistiser\ConsistiserSettings.h \
./Source\Reasoner\Consistiser\CIndividualPrecomputationTestingItem.h \
./Source\Reasoner\Consistiser\CIndividualPrecomputationCoordinationHashData.h \
./Source\Reasoner\Consistiser\CIndividualPrecomputationCoordinationHash.h \
./Source\Reasoner\Consistiser\CIndividualDependenceTrackingObserver.h \
./Source\Reasoner\Consistiser\CIndividualDependenceTrackingMarker.h \
./Source\Reasoner\Consistiser\CIndividualDependenceTrackingCollector.h \
./Source\Reasoner\Consistiser\CIncrementalPrecomputationThread.h \
./Source\Reasoner\Consistiser\CIncrementalOntologyPrecomputationItem.h \
./Source\Reasoner\Consistiser\CIncrementalConsistencePrecomputationTestingItem.h \