cellar/include/launch.hpp

17 lines
242 B
C++
Raw Normal View History

2017-03-23 21:20:26 -07:00
#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