Skip to content
Snippets Groups Projects
Select Git revision
  • d5f857046bdfe38cea29f74346ae765362f7014e
  • main default protected
  • develop
  • release_2_8_3
  • release_2_8_2
  • release_2_8_1
  • release_2_8_0
  • release_2_7_1
  • release_2_7_0
  • release_2_6_0
  • release_2_5_29
  • release_2_5_28
  • release_2_5_27
  • release_2_5_26
  • release_2_5_25
  • release_2_5_24
  • release_2_5_23
  • release_2_5_22
  • release_2_5_21
  • release_2_5_20
  • release_2_5_18
  • release_2_5_17
  • release_2_5_16
23 results

CommunicationLink.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    CommunicationLink.cpp 1.62 KiB
    // ============================================================================
    //
    // = 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;
    }