From 95ff8f359cfc2189bd4d7e02e15373027d2bda32 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 29 May 2017 20:05:54 +0300 Subject: Implement openssl process --- libbutl/openssl.ixx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 libbutl/openssl.ixx (limited to 'libbutl/openssl.ixx') diff --git a/libbutl/openssl.ixx b/libbutl/openssl.ixx new file mode 100644 index 0000000..2af5029 --- /dev/null +++ b/libbutl/openssl.ixx @@ -0,0 +1,31 @@ +// file : libbutl/openssl.ixx -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#include // size_t +#include // move(), forward() + +namespace butl +{ + template + inline openssl:: + openssl (I&& in, + O&& out, + E&& err, + const P& program, + const std::string& command, + A&&... options) + : openssl ([] (const char* [], std::size_t) {}, + std::forward (in), + std::forward (out), + std::forward (err), + program, + command, + std::forward (options)...) + { + } +} -- cgit v1.1