17 lines
242 B
C++
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
|