ggandda / simd-cxx

Automatically exported from code.google.com/p/simd-cxx
0 stars 0 forks source link

Runtime::get_participant is not implemented #17

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. call dds::Runtime::get_participant()

minimum code
#include <dds/runtime.hpp>
int main()
{
  dds::Runtime r;
  r.get_participant();
}

What is the expected output? What do you see instead?
get_participant() should return ::dds::DomainParticipant as declared in 
runtime.hpp, but there is no implementation of it in runtime.cpp. As a result, 
linker failed with message like
 error: undefined reference to 'dds::Runtime::get_participant()'

What version of the product are you using? On what operating system?
SimD-0.7 on Linux, gcc-4.3.4

Please provide any additional information below.

Also, get_publisher(), get_subscriber() are not implemented.

Original issue reported on code.google.com by yos.a...@gmail.com on 6 Jul 2010 at 8:57

GoogleCodeExporter commented 8 years ago
Fixed and committed to the repo as of the 28.7.2010

Original comment by angelo.corsaro@gmail.com on 28 Jul 2010 at 2:56