Skip to content
Snippets Groups Projects
Select Git revision
  • ad98cc518a8116c7de2b68b58cad8de2c6f75676
  • main default protected
  • release_1_2_1
  • release_1_2_0
  • release_1_1_19
  • release_1_1_18
  • release_1_1_17
  • release_1_1_16
  • release_1_1_15
  • release_1_1_14
  • release_1_1_13
  • release_1_1_12
  • release_1_1_11
  • release_1_1_10
  • release_1_1_9
  • release_1_1_8
  • release_1_1_7
  • release_1_1_6
  • release_1_1_5
  • release_1_1_4
  • release_1_1_3
  • release_1_1_2
22 results

WaveformException.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    WaveformException.cpp 2.71 KiB
    //******************************************************************************************
    //
    //
    //		september 13, 2004 :  Source file for the waveforms exceptions in socket mode
    //
    //								with a Lecroy scope (avaiable for all models)
    //
    //
    //		author : X.Elattaoui
    //
    //		WaveformException.cpp: interface for the waveform exception class.
    //
    //******************************************************************************************
    
    // ============================================================================
    // DEPENDENCIES
    // ============================================================================
    #include "WaveformException.h"
    
    namespace lecroy 
    {
    // ============================================================================
    // WaveformException::WaveformException
    // ============================================================================
    WaveformException::WaveformException (void)
     : LecroyException()
    {
    
    }
    
    // ============================================================================
    // WaveformException::WaveformException
    // ============================================================================
    WaveformException::WaveformException (const char *_reason,
    					                  const char *_desc,
    					                  const char *_origin,
                                int _severity)
     : LecroyException(_reason, _desc, _origin, _severity)
    {
    
    }
    
    // ============================================================================
    // WaveformException::WaveformException
    // ============================================================================
    WaveformException::WaveformException (const std::string& _reason,
    					                  const std::string& _desc,
    					                  const std::string& _origin,
                                int _severity)
     : LecroyException(_reason, _desc, _origin, _severity)
    {
    
    }
      
    // ============================================================================
    // WaveformException::WaveformException
    // ============================================================================
    WaveformException::WaveformException (const WaveformException& _src)
      : LecroyException(_src)
    {
    
    }
    
    // ============================================================================
    // WaveformException::~WaveformException
    // ============================================================================
    WaveformException::~WaveformException (void)
    {
    
    }
    
    // ============================================================================
    // WaveformException::WaveformException
    // ============================================================================
    WaveformException& WaveformException::operator= (const WaveformException& _src) 
    {
      LecroyException::operator=(_src);
      return *this;
    }
    
    } // namespace lecroy