summaryrefslogtreecommitdiff
path: root/src/option.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/option.h')
-rw-r--r--src/option.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h
new file mode 100644
index 00000000..c9664ae3
--- /dev/null
+++ b/src/option.h
@@ -0,0 +1,22 @@
+#ifndef _OPTION_H
+#define _OPTION_H
+
+#include "xpath.h"
+
+namespace ledger {
+
+bool process_option(const string& name, xml::xpath_t::scope_t * scope,
+ const char * arg = NULL);
+
+void process_environment(const char ** envp, const string& tag,
+ xml::xpath_t::scope_t * scope);
+
+void process_arguments(int argc, char ** argv, const bool anywhere,
+ xml::xpath_t::scope_t * scope,
+ std::list<string>& args);
+
+DECLARE_EXCEPTION(option_exception);
+
+} // namespace ledger
+
+#endif // _OPTION_H