m8

A general-purpose preprocessor for metaprogramming.


m8

/

src

/

ob

/

sys_command.hh

1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef OB_SYS_COMMAND_HH
#define OB_SYS_COMMAND_HH

#include <string>

namespace OB
{

int exec(std::string& result, std::string const& command);

} // namespace OB

#endif // OB_SYS_COMMAND_HH
Back to Top