cellar/include/launch.hpp
2017-03-23 21:20:26 -07:00

17 lines
242 B
C++

#ifndef __LAUNCH_HPP
#define __LAUNCH_HPP
#pragma once
#include <string>
#include <vector>
using namespace std;
namespace cellar {
namespace launch {
extern void launch_program (vector<string>);
}
}
#endif // __LAUNCH_HPP