aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project/create_project.h
diff options
context:
space:
mode:
authorRichieSams2013-09-16 00:46:19 -0500
committerRichieSams2013-09-16 00:46:19 -0500
commitb5c762168edd83a6c5e1b442aee728150b447d98 (patch)
tree10e419dfaf4fabf75b1458c13383efadad348bd4 /devtools/create_project/create_project.h
parenta0a67a2d470816b13bab10371494652d77b23611 (diff)
parent914535a460aa3b3f23bf3ce807619ba388e14135 (diff)
downloadscummvm-rg350-b5c762168edd83a6c5e1b442aee728150b447d98.tar.gz
scummvm-rg350-b5c762168edd83a6c5e1b442aee728150b447d98.tar.bz2
scummvm-rg350-b5c762168edd83a6c5e1b442aee728150b447d98.zip
Merge branch 'master' into zvision
Diffstat (limited to 'devtools/create_project/create_project.h')
-rw-r--r--devtools/create_project/create_project.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/devtools/create_project/create_project.h b/devtools/create_project/create_project.h
index d0f2db364c..5325bf6d1b 100644
--- a/devtools/create_project/create_project.h
+++ b/devtools/create_project/create_project.h
@@ -303,6 +303,14 @@ void splitFilename(const std::string &fileName, std::string &name, std::string &
bool producesObjectFile(const std::string &fileName);
/**
+* Convert an integer to string
+*
+* @param num the integer to convert
+* @return string representation of the number
+*/
+std::string toString(int num);
+
+/**
* Structure representing a file tree. This contains two
* members: name and children. "name" holds the name of
* the node. "children" does contain all the node's children.