Skip to content
Snippets Groups Projects
Commit 87b49759 authored by Jean Coquet's avatar Jean Coquet
Browse files

updated include paths

release
parent 88cb03cf
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<groupId>fr.soleil.device</groupId> <groupId>fr.soleil.device</groupId>
<artifactId>XPSGroup-${aol}-${mode}</artifactId> <artifactId>XPSGroup-${aol}-${mode}</artifactId>
<version>1.0.0</version> <version>1.0.1</version>
<packaging>nar</packaging> <packaging>nar</packaging>
...@@ -27,11 +27,11 @@ This field 'name' will define the name of the application. ...@@ -27,11 +27,11 @@ This field 'name' will define the name of the application.
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>fr.soleil.lib</groupId> <groupId>fr.soleil.lib</groupId>
<artifactId>YAT-${aol}-${library}-${mode}</artifactId> <artifactId>YAT4Tango-${aol}-${library}-${mode}</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>fr.soleil.lib</groupId> <groupId>fr.soleil.lib</groupId>
<artifactId>YAT4Tango-${aol}-${library}-${mode}</artifactId> <artifactId>YAT-${aol}-${library}-${mode}</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
......
...@@ -2,12 +2,11 @@ ...@@ -2,12 +2,11 @@
// //
// Projet : BT500 server // Projet : BT500 server
// StringTokenizer.cpp: implementation of the string tokenizer class. // StringTokenizer.cpp: implementation of the string tokenizer class.
// cette classe offre 1 service de réduction d'1 chaine avec séparateurs en tokens // cette classe offre 1 service de r�duction d'1 chaine avec s�parateurs en tokens
// //
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
#include "StringTokenizer.h" #include "StringTokenizer.h"
#include <yat/XString.h>
//- Ctor with initialisation--------------------------------------------- //- Ctor with initialisation---------------------------------------------
......
#include "./Util.h" #include "./Util.h"
void post_msg( yat::Task& t, size_t msg_id, size_t timeout_ms, bool wait ) void post_msg(yat4tango::DeviceTask & t, size_t msg_id, size_t timeout_ms, bool wait )
{ {
yat::Message* msg = 0; yat::Message* msg = 0;
try try
......
...@@ -5,13 +5,13 @@ ...@@ -5,13 +5,13 @@
//- with data use example : post_msg(*this, MY_USER_MSG_WITH_DATA, COMMAND_TIMEOUT_MS, true, c ); //- with data use example : post_msg(*this, MY_USER_MSG_WITH_DATA, COMMAND_TIMEOUT_MS, true, c );
#include <yat/threading/Task.h> #include <yat4tango/DeviceTask.h>
#include <yat4tango/CommonHeader.h> #include <yat4tango/CommonHeader.h>
void post_msg( yat::Task &t, size_t msg_id, size_t timeout_ms, bool wait ); void post_msg (yat4tango::DeviceTask &t, size_t msg_id, size_t timeout_ms, bool wait );
template <typename T> template <typename T>
void post_msg( yat::Task &t, size_t msg_id, size_t timeout_ms, bool wait, void post_msg (yat4tango::DeviceTask &t, size_t msg_id, size_t timeout_ms, bool wait,
T const &data ) T const &data )
{ {
yat::Message *msg = NULL; yat::Message *msg = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment