summaryrefslogtreecommitdiffstats
path: root/src/libixion/config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libixion/config.cpp')
-rw-r--r--src/libixion/config.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/libixion/config.cpp b/src/libixion/config.cpp
new file mode 100644
index 0000000..e4a39e7
--- /dev/null
+++ b/src/libixion/config.cpp
@@ -0,0 +1,27 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include "ixion/config.hpp"
+
+namespace ixion {
+
+config::config() :
+ sep_function_arg(','),
+ sep_matrix_column(','),
+ sep_matrix_row(';'),
+ output_precision(-1)
+{}
+
+config::config(const config& r) :
+ sep_function_arg(r.sep_function_arg),
+ sep_matrix_column(r.sep_matrix_column),
+ sep_matrix_row(r.sep_matrix_row),
+ output_precision(r.output_precision) {}
+
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */