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/storage_helpers/FileLocation.h"
27 #include "wrench/services/storage/StorageServiceProperty.h"
28 
29 // File Registry Service
30 #include "wrench/services/file_registry/FileRegistryService.h"
31 #include "wrench/services/file_registry/FileRegistryServiceProperty.h"
32 
33 // Managers
34 #include "wrench/managers/JobManager.h"
35 #include "wrench/managers/DataMovementManager.h"
36 
37 // Logging
38 #include "wrench/logging/TerminalOutput.h"
39 
40 // Workflow
41 #include "wrench/workflow/WorkflowTask.h"
42 #include "wrench/workflow/WorkflowFile.h"
43 
44 // Workflow Job
45 #include "wrench/workflow/job/WorkflowJob.h"
46 #include "wrench/workflow/job/StandardJob.h"
47 #include "wrench/workflow/job/PilotJob.h"
48 
49 // Simgrid Util
50 #include "wrench/simgrid_S4U_util/S4U_Mailbox.h"
51 
52 
53 #endif //WRENCH_WRENCH_DEV_H