本文整理汇总了C++中releaseInPorts函数的典型用法代码示例。如果您正苦于以下问题:C++ releaseInPorts函数的具体用法?C++ releaseInPorts怎么用?C++ releaseInPorts使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了releaseInPorts函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: throw
void ProgrammableDevice_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the device running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
ExecutableDevice_impl::releaseObject();
}
示例2: throw
void file_descriptor_sink_i_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the component running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
delete(long_in);
Resource_impl::releaseObject();
}
示例3: throw
void randomizer_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the component running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
delete(atsc_mpeg_packet_in);
delete(atsc_mpeg_packet_no_sync_out);
Resource_impl::releaseObject();
}
示例4: throw
void chunks_to_symbols_bf_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the component running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
delete(byte_in);
delete(float_out);
Resource_impl::releaseObject();
}
示例5: throw
void vector_sink_s_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the component running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
delete(short_in);
Resource_impl::releaseObject();
LOG_TRACE( vector_sink_s_base, "COMPLETED RELEASE OBJECT" );
}
示例6: throw
void field_sync_demux_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the component running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
delete(float_in_0);
delete(float_in_1);
delete(atsc_soft_data_segment_out);
Resource_impl::releaseObject();
}
示例7: throw
void vector_to_streams_ss_4o_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the component running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
delete(short_in);
delete(short_out_0);
delete(short_out_1);
delete(short_out_2);
delete(short_out_3);
Resource_impl::releaseObject();
}
示例8: throw
void USRP_UHD_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the component running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
delete(DigitalTuner_in);
delete(RFInfo_in);
delete(dataShortComplex_in);
delete(dataFloatComplex_in);
delete(dataShort_out);
Device_impl::releaseObject();
}
示例9: throw
void fll_band_edge_cc_4o_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the component running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
delete(data_complex_in);
delete(data_complex_out);
delete(data_frequency_out);
delete(data_phase_out);
delete(data_error_out);
Resource_impl::releaseObject();
}
示例10: throw
void pfb_synthesizer_ccf_5i_base::releaseObject() throw (CORBA::SystemException, CF::LifeCycle::ReleaseError)
{
// This function clears the component running condition so main shuts down everything
try {
stop();
} catch (CF::Resource::StopError& ex) {
// TODO - this should probably be logged instead of ignored
}
// deactivate ports
releaseInPorts();
releaseOutPorts();
delete(complex_in_0);
delete(complex_in_1);
delete(complex_in_2);
delete(complex_in_3);
delete(complex_in_4);
delete(complex_out);
Resource_impl::releaseObject();
}