arsenalgear-cpp
A library containing general purpose C++ utils.
system.hpp
Go to the documentation of this file.
1 //====================================================
2 // File data
3 //====================================================
11 //====================================================
12 // Preprocessor settings
13 //====================================================
14 #pragma once
15 #ifndef ARSENALGEAR_SYSTEM_HPP
16 #define ARSENALGEAR_SYSTEM_HPP
17 
18 //====================================================
19 // Headers
20 //====================================================
21 
22 //STD headers
23 #include <string>
24 
25 namespace agr
26  {
27  //====================================================
28  // Functions declaration
29  //====================================================
30  extern std::string getCommandOut( const char* command );
31  }
32 
33 #endif
Definition: stream.cpp:22
std::string getCommandOut(const char *command)
Function used to get the output of a shell command.
Definition: system.cpp:38