|
Revision 409, 482 bytes
(checked in by Gregor, 2 years ago)
|
Tango branch, up to date with r385
|
| Line | |
|---|
| 1 |
// Component to call the compilation phase |
|---|
| 2 |
// Copyright (c) 2007 Gregor Richards |
|---|
| 3 |
// License for redistribution is by either the Artistic License |
|---|
| 4 |
// in artistic.txt, or the GNU General Public License in gnu.txt |
|---|
| 5 |
// or any later version. |
|---|
| 6 |
// See the included readme.txt for details. |
|---|
| 7 |
|
|---|
| 8 |
#ifndef COMPILE_H |
|---|
| 9 |
#define COMPILE_H |
|---|
| 10 |
|
|---|
| 11 |
#include <string> |
|---|
| 12 |
|
|---|
| 13 |
std::string compileCommand(const std::string &i, std::string &response, bool &useresponse); |
|---|
| 14 |
|
|---|
| 15 |
void runCompile(const std::string &files); |
|---|
| 16 |
|
|---|
| 17 |
#endif |
|---|