// ============================================================================ // // = CONTEXT // TANGO Project - Electrometer Support Library // // = FILENAME // CommunicationLink.cpp // // = AUTHOR // X. Elattaoui // // // $Author: xavela $ // // $Revision: 1.2 $ // // $Log: not supported by cvs2svn $ // Revision 1.1 2007/07/09 13:20:37 stephle // initial import // // // ============================================================================ // ============================================================================ // DEPENDENCIES // ============================================================================ #include <iostream> #include "CommunicationLink.h" // ============================================================================ // CommunicationLink::CommunicationLink // ============================================================================ //CommunicationLink::CommunicationLink (const std::string& communication_link_name) CommunicationLink::CommunicationLink ( std::string& communication_link_name) : _communication_Device_name(communication_link_name) { //std::cout << "CommunicationLink::CommunicationLink <-" << std::endl; //std::cout << "CommunicationLink::CommunicationLink ->" << std::endl; } // ============================================================================ // CommunicationLink::~CommunicationLink // ============================================================================ CommunicationLink::~CommunicationLink (void) { //std::cout << "CommunicationLink::~CommunicationLink <-" << std::endl; //std::cout << "CommunicationLink::~CommunicationLink ->" << std::endl; }