00001 #include "PCDLoaderService_impl.h" 00002 #include "PCDLoader.h" 00003 00004 PCDLoaderService_impl::PCDLoaderService_impl() : m_comp(NULL) 00005 { 00006 } 00007 00008 PCDLoaderService_impl::~PCDLoaderService_impl() 00009 { 00010 } 00011 00012 00013 void PCDLoaderService_impl::setComp(PCDLoader *i_comp) 00014 { 00015 m_comp = i_comp; 00016 } 00017 00018 ::CORBA::Boolean PCDLoaderService_impl::load(const char* filename, const char* label) 00019 { 00020 return m_comp->load(filename, label); 00021 }