cec: added GetLogicalAddresses()/cec_get_logical_addresses() to the interface, that...
[deb_libcec.git] / src / lib / LibCEC.cpp
index 7022def6242c824ea837af4cc3ddfcb77bd36eb1..9c169cc4854602e5d9ad550b913206ed401c3ee2 100644 (file)
@@ -448,6 +448,12 @@ bool CLibCEC::SetStreamPath(uint16_t iPhysicalAddress)
   return m_cec->SetStreamPath(iPhysicalAddress);
 }
 
+cec_logical_addresses CLibCEC::GetLogicalAddresses(void)
+{
+  cec_logical_addresses addr = m_cec->GetLogicalAddresses();
+  return addr;
+}
+
 static CLibCEC *g_libCEC_instance(NULL);
 CLibCEC *CLibCEC::GetInstance(void)
 {