WRENCH
1.10
Cyberinfrastructure Simulation Workbench
Overview
Installation
Getting Started
WRENCH 101
WRENCH 102
APIs Reference
User
Developer
Internal
include
wrench
simulation
SimulationMessage.h
1
11
#ifndef WRENCH_SIMGRIDMESSAGES_H
12
#define WRENCH_SIMGRIDMESSAGES_H
13
14
#include <string>
15
#include <map>
16
#include <iostream>
17
18
namespace
wrench
{
19
20
/***********************/
22
/***********************/
23
27
class
SimulationMessage {
28
29
public
:
30
31
SimulationMessage(std::string name,
double
payload);
32
virtual
~SimulationMessage();
33
34
virtual
std::string getName();
35
37
std::string name;
39
double
payload;
40
};
41
42
43
/***********************/
45
/***********************/
46
47
};
48
49
#endif //WRENCH_SIMGRIDMESSAGES_H
wrench
Definition:
Alarm.cpp:20