aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/share/defaults.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/sdp/share/defaults.d')
-rw-r--r--src/sdp/share/defaults.d22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/sdp/share/defaults.d b/src/sdp/share/defaults.d
new file mode 100644
index 0000000..ed76846
--- /dev/null
+++ b/src/sdp/share/defaults.d
@@ -0,0 +1,22 @@
+/++
+ shared default settings
++/
+module sdp.share.defaults;
+template Msg() {
+ import std.stdio;
+ auto Msg(I)(I doc_matters) {
+ struct Msg_ {
+ void v()(string message) {
+ if (!(doc_matters.opt.action.quiet) && doc_matters.opt.action.verbose) {
+ writeln(message);
+ }
+ }
+ void vv()(string message) {
+ if (!(doc_matters.opt.action.quiet) && doc_matters.opt.action.very_verbose) {
+ writeln(message);
+ }
+ }
+ }
+ return Msg_();
+ }
+}