Commit 1bc523f9 authored by garciay's avatar garciay
Browse files

Review IVIM, MAPEM/SPATEM and SREM/SSEM

parent b07b4b34
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -15,6 +15,9 @@
*/
#include "AdapterControlPort_CAM.partH"
#include "AdapterControlPort_DENM.partH"
#include "AdapterControlPort_IVIM.partH"
#include "AdapterControlPort_MapemSpatem.partH"
#include "AdapterControlPort_SremSsem.partH"
#include "AdapterControlPort_GN.partH"
/*
#include "AdapterControlPort_IVIM.partH"
+4 −0
Original line number Diff line number Diff line
@@ -15,6 +15,10 @@
namespace LibItsIvim__TestSystem {

class IvimPort : public IvimPort_BASE {
    Params _cfg_params;
    Params _layer_params;
    Layer * _layer;
    std::string _time_key;
public:
	IvimPort(const char *par_port_name = NULL);
	~IvimPort();
+5 −5
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ protected:
	void user_start();
	void user_stop();

	void outgoing_send(const LibItsCommon__TypesAndValues::UtIvimInitialize& send_par);
	void outgoing_send(const LibItsIvim__TypesAndValues::UtIvimInitialize& send_par);
	
 /*   void outgoing_send(const LibItsCommon__TypesAndValues::UtIvimChangePosition& send_par);

+0 −82
Original line number Diff line number Diff line
// This Test Port skeleton source file was generated by the
// TTCN-3 Compiler of the TTCN-3 Test Executor version CRL 113 200/5 R3A
// for U-ERICSSON\ethgry (ethgry@HU00078339) on Fri Aug 14 21:19:06 2015

// Copyright Ericsson Telecom AB 2000-2014

// You may modify this file. Complete the body of empty functions and
// add your member functions here.

#include "MapSpatPort.hh"

namespace LibItsMapSpat__TestSystem {

MapSpatPort::MapSpatPort(const char *par_port_name)
	: MapSpatPort_BASE(par_port_name)
{

}

MapSpatPort::~MapSpatPort()
{

}

void MapSpatPort::set_parameter(const char * /*parameter_name*/,
	const char * /*parameter_value*/)
{

}

/*void MapSpatPort::Handle_Fd_Event(int fd, boolean is_readable,
	boolean is_writable, boolean is_error) {}*/

void MapSpatPort::Handle_Fd_Event_Error(int /*fd*/)
{

}

void MapSpatPort::Handle_Fd_Event_Writable(int /*fd*/)
{

}

void MapSpatPort::Handle_Fd_Event_Readable(int /*fd*/)
{

}

/*void MapSpatPort::Handle_Timeout(double time_since_last_call) {}*/

void MapSpatPort::user_map(const char * /*system_port*/)
{

}

void MapSpatPort::user_unmap(const char * /*system_port*/)
{

}

void MapSpatPort::user_start()
{

}

void MapSpatPort::user_stop()
{

}

void MapSpatPort::outgoing_send(const MapReq& /*send_par*/)
{

}

void MapSpatPort::outgoing_send(const SpatReq& /*send_par*/)
{

}

} /* end of namespace */
+0 −45
Original line number Diff line number Diff line
// This Test Port skeleton header file was generated by the
// TTCN-3 Compiler of the TTCN-3 Test Executor version CRL 113 200/5 R3A
// for U-ERICSSON\ethgry (ethgry@HU00078339) on Fri Aug 14 21:19:06 2015

// Copyright Ericsson Telecom AB 2000-2014

// You may modify this file. Add your attributes and prototypes of your
// member functions here.

#ifndef MapSpatPort_HH
#define MapSpatPort_HH

#include "LibItsMapSpat_TestSystem.hh"

namespace LibItsMapSpat__TestSystem {

class MapSpatPort : public MapSpatPort_BASE {
public:
	MapSpatPort(const char *par_port_name = NULL);
	~MapSpatPort();

	void set_parameter(const char *parameter_name,
		const char *parameter_value);

private:
	/* void Handle_Fd_Event(int fd, boolean is_readable,
		boolean is_writable, boolean is_error); */
	void Handle_Fd_Event_Error(int fd);
	void Handle_Fd_Event_Writable(int fd);
	void Handle_Fd_Event_Readable(int fd);
	/* void Handle_Timeout(double time_since_last_call); */
protected:
	void user_map(const char *system_port);
	void user_unmap(const char *system_port);

	void user_start();
	void user_stop();

	void outgoing_send(const MapReq& send_par);
	void outgoing_send(const SpatReq& send_par);
};

} /* end of namespace */

#endif
Loading