Added .clang file for proper clang checking. Renamed arguiment parser module.

This commit is contained in:
2016-06-29 20:20:02 +01:00
parent e86b603f9e
commit 928fdfcae8
6 changed files with 11 additions and 3 deletions
+1
View File
@@ -0,0 +1 @@
-I ./include
View File
@@ -1,13 +1,14 @@
#include "argument_parser.h"
#include "ArgumentParser.h"
#include <iostream>
using namespace std;
ArgumentParser::ArgumentParser() : desc("Allowed options") {
// Add positional arguments to specify source, target and output database locations.
positionalOptions.add("input_db", 1);
positionalOptions.add("output_db", 1);
// Add optional arguments to allow control over application settings from the command line.
desc.add_options()
("help,h", "produce help message")
("compression", po::value<int>(), "set compression level")
+6
View File
@@ -0,0 +1,6 @@
#include <sndfile.hh>
class AudioFile {
public:
private:
};
+1 -1
View File
@@ -1,5 +1,5 @@
#include <iostream>
#include "argument_parser.h"
#include "ArgumentParser.h"
using namespace std;