Commit 6345e24f authored by garciay's avatar garciay
Browse files

Minor bug fixed in include file naming

Continue tests on codecs
parent bd17c801
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -29,10 +29,10 @@ BITSTRING fx__enc__DenmReq(const LibItsDenm__TestSystem::DenmReq& p)
 * @param   value to encode
 * @return  encoded value
 ****************************************************/
/* function not needed yet, decvalue() is not used in TTCN-3 code
//function not needed yet, decvalue() is not used in TTCN-3 code
INTEGER fx__dec__DenmReq(BITSTRING& b, LibItsDenm__TestSystem::DenmReq& p)
{
  return -1
  return -1;
}
*/

} //end namespace
+1 −1
Original line number Diff line number Diff line
#include "LibItsEvcsn_encdecDeclarations.hh"
#include "LibItsEvcsn_EncdecDeclarations.hh"

namespace LibItsEvcsn__EncdecDeclarations {
/****************************************************
+1 −1
Original line number Diff line number Diff line
#include "LibItsGeoNetworking_encdecDeclarations.hh"
#include "LibItsGeoNetworking_EncdecDeclarations.hh"

#include "GeoNetworkingCodec.hh"
#include "loggers.hh"
+17 −24
Original line number Diff line number Diff line
@@ -11,65 +11,58 @@

namespace LibItsBtp__TestSystem {

BtpPort::BtpPort(const char *par_port_name)
	: BtpPort_BASE(par_port_name)
{
BtpPort::BtpPort(const char *par_port_name) :
		BtpPort_BASE(par_port_name) {

}

BtpPort::~BtpPort()
{
BtpPort::~BtpPort() {

}

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

}

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

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

}

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

}

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

}

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

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

}

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

}

void BtpPort::user_start()
{
void BtpPort::user_start() {

}

void BtpPort::user_stop()
{
void BtpPort::user_stop() {

}

void BtpPort::outgoing_send(const BtpReq& /*send_par*/)
{
void BtpPort::outgoing_send(const BtpReq& /*send_par*/) {

}

void BtpPort::receiveMsg(const LibItsBtp__TypesAndValues::BtpPacket&, const Params&) {

}

+5 −0
Original line number Diff line number Diff line
@@ -12,9 +12,12 @@

#include "LibItsBtp_TestSystem.hh"

#include "BTPLayer.h"

namespace LibItsBtp__TestSystem {

class BtpPort : public BtpPort_BASE {
	BTPLayer * layer;
public:
	BtpPort(const char *par_port_name = NULL);
	~BtpPort();
@@ -37,6 +40,8 @@ protected:
	void user_stop();

	void outgoing_send(const BtpReq& send_par);

	void receiveMsg (const LibItsBtp__TypesAndValues::BtpPacket&, const Params&);
};

} /* end of namespace */
Loading