Gabriele Contini
2020-01-11 1d1082fe695366da3498f528b953203a90fe7385
src/library/pc_identifier/pc_identifier.cpp
@@ -22,8 +22,8 @@
PcIdentifier::PcIdentifier(const PcIdentifier& other) : m_data(other.m_data) {}
void PcIdentifier::set_identification_strategy(IDENTIFICATION_STRATEGY strategy) {
   if (strategy == STRATEGY_UNKNOWN || strategy == STRATEGY_DEFAULT) {
void PcIdentifier::set_identification_strategy(LCC_API_IDENTIFICATION_STRATEGY strategy) {
   if (strategy == STRATEGY_NONE || strategy == STRATEGY_DEFAULT) {
      throw logic_error("Only known strategies are permitted");
   }
   uint8_t stratMov = (strategy << 5);
@@ -55,4 +55,8 @@
   return result;
}
LCC_API_IDENTIFICATION_STRATEGY PcIdentifier::get_identification_strategy() const {}
bool PcIdentifier::data_match(const std::array<uint8_t, 6>& data) const {}
} /* namespace license */