Commit 1fe21fc9 authored by SRT Operator's avatar SRT Operator
Browse files

implementation of setTargetFileName method

parent 934a57f4
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -262,6 +262,11 @@ public:

    virtual void getCommProtVersion (CORBA::String_out version) throw (CORBA::SystemException);

    /**
     * This method is related to the implementation of the genericBackend interface
     */
    virtual void setTargetFileName (const char * fileName) throw (CORBA::SystemException,ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);
    
    /**
     * Call this function to set the current time (from the local computer) into the backend. 
     * @thorw CORBA::SystemException
+6 −0
Original line number Diff line number Diff line
@@ -545,6 +545,12 @@ void RoachImpl::setSection(CORBA::Long input,CORBA::Double freq,CORBA::Double bw
	}		
}

void RoachImpl::setTargetFileName (const char * fileName) throw (CORBA::SystemException,ComponentErrors::ComponentErrorsEx,
		BackendsErrors::BackendsErrorsEx)
{
	// nothing to do
}

ACS::doubleSeq *RoachImpl::getTpi() throw (CORBA::SystemException,
		ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx)
{
+5 −0
Original line number Diff line number Diff line
@@ -269,6 +269,11 @@ public:
    		 ACS::longSeq_out feed,ACS::longSeq_out ifNumber/*Receivers::TPolarizationSeq_out polarization*/) 
     	throw (CORBA::SystemException,ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);

     /**
     * This method is just a place holder for this implementation of the genericBackend interface
     */
    virtual void setTargetFileName (const char * fileName) throw (CORBA::SystemException,ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);
     
     /**
	 * This method allows the client to interface the component by sending text commands. The command is parsed and executed according the
	 * defined command syntax and grammar.
+6 −0
Original line number Diff line number Diff line
@@ -695,6 +695,12 @@ void XBackendsImpl::enableChannels(const ACS::longSeq& enable)
	}			
}

void XBackendsImpl::setTargetFileName (const char * fileName) throw (CORBA::SystemException,ComponentErrors::ComponentErrorsEx,
		BackendsErrors::BackendsErrorsEx)
{
	// nothing to do
}

void XBackendsImpl::setTime()
	throw (CORBA::SystemException,ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx)
{