]> rtime.felk.cvut.cz Git - orte.git/blob - orte/java/src/org/ocera/orte/types/SendInfo.java
New ORTE version 0.3.0 committed
[orte.git] / orte / java / src / org / ocera / orte / types / SendInfo.java
1 /* SendInfo.java */
2 package org.ocera.orte.types;
3
4
5 /**
6   * Class SendInfo
7   *
8   * @author Lukas Pokorny (lukas_pokorny@centrum.cz)
9   * @author CTU FEE Prague - Department of Control Engineering (dce.felk.cvut.cz)
10   * @author Project ORTE - OCERA Real Time Ethernet (www.ocera.org)
11   * @author dedication to Kj
12   * @version 0.1
13   *
14   * typedef enum ORTESendStatus {
15   *      NEED_DATA        = 0x01,
16   *      CQL              = 0x02
17   *    } ORTESendStatus;
18   *
19   * This program is free software; you can redistribute it and/or modify
20   * it under the terms of the GNU General Public License as published by
21   * the Free Software Foundation; either version 2 of the License, or
22   * (at your option) any later version.
23   *
24   * This program is distributed in the hope that it will be useful,
25   * but WITHOUT ANY WARRANTY; without even the implied warranty of
26   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27   * GNU General Public License for more details.
28   *
29   */
30
31 public class SendInfo
32 {
33   SendStatus      status;
34   String          topic;
35   String          type;
36   GUID_RTPS       senderGUID;
37   SequenceNumber  sn;
38
39   // constructor
40   public SendInfo()
41   {
42     // vytvorit objekt JSendStatus + nahrat z C
43     // nahrat z C topic
44     // nahrat z C type
45     // vytvorit + nahrat GUID
46     // vytvorit + nahrat SN
47   }
48
49
50
51
52
53 }