summaryrefslogtreecommitdiff
path: root/CIAO/examples/Display/GPS/GPS_exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/Display/GPS/GPS_exec.h')
-rw-r--r--CIAO/examples/Display/GPS/GPS_exec.h16
1 files changed, 11 insertions, 5 deletions
diff --git a/CIAO/examples/Display/GPS/GPS_exec.h b/CIAO/examples/Display/GPS/GPS_exec.h
index f0ca86823b8..35567922005 100644
--- a/CIAO/examples/Display/GPS/GPS_exec.h
+++ b/CIAO/examples/Display/GPS/GPS_exec.h
@@ -40,9 +40,12 @@ namespace MyImpl
void push_Refresh (HUDisplay::tick *);
// Operations from HUDisplay::position
- CORBA::Long posx ();
+ HUDisplay::GPS_position posxy ();
- CORBA::Long posy ();
+ CORBA::UShort id ();
+ void id ( const ::CORBA::UShort id);
+
+ CORBA::Boolean started ();
// Operations from Components::SessionComponent
void set_session_context (Components::SessionContext_ptr ctx);
@@ -61,9 +64,10 @@ namespace MyImpl
private:
CORBA::Long positionx_, positiony_;
+ CORBA::UShort id_;
+ CORBA::Boolean started_;
};
-
/**
* @class GPSHome_exec_i
*
@@ -95,9 +99,11 @@ namespace MyImpl
}
// Operations from HUDisplay::position
- CORBA::Long posx ();
+ HUDisplay::GPS_position posxy ();
+
+ CORBA::UShort id ();
- CORBA::Long posy ();
+ CORBA::Boolean started ();
private:
GPS_exec_i& component_;