wrench-dev.h
1 
10 #ifndef WRENCH_WRENCH_DEV_H
11 #define WRENCH_WRENCH_DEV_H
12 
13 #include "wrench.h"
14 
15 // Exceptions
16 #include "wrench/exceptions/WorkflowExecutionException.h"
17 
18 // Compute Services
19 #include "wrench/services/compute/ComputeService.h"
20 #include "wrench/services/compute/ComputeServiceProperty.h"
21 #include "wrench/services/compute/ComputeServiceMessage.h"
22 #include "wrench/services/ServiceMessage.h"
23 
24 // Storage Services
25 #include "wrench/services/storage/StorageService.h"
26 #include "wrench/services/storage/StorageServiceProperty.h"
27 
28 // File Registry Service
29 #include "wrench/services/file_registry/FileRegistryService.h"
30 #include "wrench/services/file_registry/FileRegistryServiceProperty.h"
31 
32 // Managers
33 #include "wrench/managers/JobManager.h"
34 #include "wrench/managers/DataMovementManager.h"
35 
36 // Logging
37 #include "wrench/logging/TerminalOutput.h"
38 
39 // Workflow
40 #include "wrench/workflow/WorkflowTask.h"
41 #include "wrench/workflow/WorkflowFile.h"
42 
43 // Workflow Job
44 #include "wrench/workflow/job/WorkflowJob.h"
45 #include "wrench/workflow/job/StandardJob.h"
46 #include "wrench/workflow/job/PilotJob.h"
47 
48 // Simgrid Util
49 #include "wrench/simgrid_S4U_util/S4U_Mailbox.h"
50 
51 
52 #endif //WRENCH_WRENCH_DEV_H