Update Makefile.conf and Libraries
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
#include "Bluetooth/Device.h"
|
||||
#include "UniFi/Device.h"
|
||||
#include "Util/StaticDevice.h"
|
||||
#include "Util/INIh.h"
|
||||
#include <clipp.h>
|
||||
#include <INIReader.h>
|
||||
#include <Logging.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
@@ -32,7 +32,7 @@ int main(int argc, char** argv)
|
||||
return 1;
|
||||
}
|
||||
|
||||
PresenceDetection::Util::INIReader iniReader("PresenceDetection.ini");
|
||||
INIReader iniReader("PresenceDetection.ini");
|
||||
if (iniReader.ParseError() != 0)
|
||||
{
|
||||
std::cerr << "Can't read PresenceDetection.ini" << std::endl;
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
#include "Util/INIh.h"
|
||||
#include <INIReader.h>
|
||||
#include <Timer.h>
|
||||
#include <unistd.h>
|
||||
#include <algorithm>
|
||||
@@ -16,7 +16,7 @@ void print()
|
||||
|
||||
void TestINIReader()
|
||||
{
|
||||
PresenceDetection::Util::INIReader reader("PresenceDetection.ini");
|
||||
INIReader reader("PresenceDetection.ini");
|
||||
|
||||
std::string target = reader.Get("PresenceDetection", "Target", "");
|
||||
if (!target.empty())
|
||||
|
||||
Reference in New Issue
Block a user