OpenTTCN/Developer corner/Implementing external functions/Skeletons/CPP/CD impl.h

From OpenTTCN

Jump to: navigation, search

  OpenTTCN DocZone

  Home | Developer's corner | Knowledge base | Working documents | Documentation | OpenTTCN IDE | Tutorials | Training | How do I | Frequently asked questions | Technical support


CD_impl.h


Back to main article >>

#ifndef __OT_EXT_FUNC_EXAMPLE_CPP_CD_IMPL_H__
#define __OT_EXT_FUNC_EXAMPLE_CPP_CD_IMPL_H__

#include <tci/TciCdProvided.h>

using namespace ORG_ETSI_TTCN3_TCI;
using namespace ORG_ETSI_TTCN3_TRI;

class CD_impl : public TciCdProvided
{

public:

    virtual ~CD_impl();

    virtual TriMessage* encode(const TciValue* value);

    virtual TciValue* decode(
        const TriMessage* message,
        const TciType* decHypothesis);
};

#endif
Views
Personal tools