Skip to content

Commit

Permalink
* Fix windows build.
Browse files Browse the repository at this point in the history
  • Loading branch information
xaqq committed Jun 25, 2015
1 parent d5c38a7 commit 85f833c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
Empty file modified build_doc.sh 100755 → 100644
Empty file.
Expand Up @@ -18,6 +18,7 @@
#include "readercardadapters/axesstmclegicdatatransport.hpp"
#include <boost/property_tree/xml_parser.hpp>
#include "logicalaccess/myexception.hpp"
#include "logicalaccess/logs.hpp"

namespace logicalaccess
{
Expand Down
11 changes: 4 additions & 7 deletions plugins/pluginsreaderproviders/rfideas/rfideasreaderunit.cpp
Expand Up @@ -145,9 +145,8 @@ namespace logicalaccess

std::string RFIDeasReaderUnit::getName() const
{
string ret = "";
return ret;
}
return std::string();
}

std::string RFIDeasReaderUnit::getConnectedName()
{
Expand Down Expand Up @@ -318,11 +317,9 @@ namespace logicalaccess
return chipList;
}

string RFIDeasReaderUnit::getReaderSerialNumber()
std::string RFIDeasReaderUnit::getReaderSerialNumber()
{
string ret;

return ret;
return "";
}

bool RFIDeasReaderUnit::isConnected()
Expand Down

0 comments on commit 85f833c

Please sign in to comment.