lean4-htt/src/util/process.h
Jared Roesch e65d90ac79 feat(*): C++ code generator
in progress move of Lean.native to init
2016-12-05 16:11:41 -08:00

23 lines
437 B
C++

/*
Copyright (c) 2016 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Jared Roesch
*/
#pragma once
#include <iostream>
#include <string>
#include "util/buffer.h"
namespace lean {
class process {
std::string m_proc_name;
buffer<std::string> m_args;
public:
process(std::string exe_name);
process & arg(std::string arg_str);
void run();
};
}