X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=test%2Flib%2FShell.hpp;h=515bf1b59b40d94f0779910cad1715069bd01b7f;hb=30a61a951f7c89a710621c4485f381fb35a55f44;hp=d61f8ceb489bdff3ab40b6ca4b9f5cb29aad5117;hpb=9f262c9ea92d4869715ca6f534c80075a8310ac1;p=awesomized%2Flibmemcached diff --git a/test/lib/Shell.hpp b/test/lib/Shell.hpp index d61f8ceb..515bf1b5 100644 --- a/test/lib/Shell.hpp +++ b/test/lib/Shell.hpp @@ -1,3 +1,18 @@ +/* + +--------------------------------------------------------------------+ + | libmemcached - C/C++ Client Library for memcached | + +--------------------------------------------------------------------+ + | Redistribution and use in source and binary forms, with or without | + | modification, are permitted under the terms of the BSD license. | + | You should have received a copy of the license in a bundled file | + | named LICENSE; in case you did not receive a copy you can review | + | the terms online at: https://opensource.org/licenses/BSD-3-Clause | + +--------------------------------------------------------------------+ + | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ | + | Copyright (c) 2020 Michael Wallner | + +--------------------------------------------------------------------+ +*/ + #pragma once #include "test/lib/common.hpp" @@ -5,9 +20,10 @@ class Shell { public: explicit Shell(bool redirect_stderr = true); - explicit Shell(const string &prefix, bool redirect_stderr = true); + explicit Shell(string prefix, bool redirect_stderr = true); bool run(const string &command, string &output); bool run(const string &command); + private: string prefix; bool redirect;