Skip to content
Snippets Groups Projects
Select Git revision
  • 4e0309f9f4ab2edbd4a825319966a31bd5c1830b
  • main default protected
  • dev_corrfp
  • dev
  • dev_stoptocurrent
  • 1.5
  • 1.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.0
16 results

generate_datasim.py

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;
    }