-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.cpp
39 lines (31 loc) · 791 Bytes
/
Main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Simple test program
#include "Libconfig.h"
#include <iostream>
#include <string>
int main(int argc, char **argv)
{
char const* filename;
char const* configItemAddress;
std::string value;
if (argc > 2)
{
filename = argv[1];
configItemAddress = argv[2];
}
else
{
std::cerr << "Error: No input file provided." << std::endl;
return (1);
}
// Parse the configuration
libconfig::Configuration config(filename);
// Print the configuration
config.print();
// Look up a string value in the configuration
bool found = config.lookupValue(configItemAddress, value);
if (found)
std::cout << configItemAddress << ": \"" << value << "\"" << std::endl;
else
std::cout << configItemAddress << " not found" << std::endl;
return (0);
}