summaryrefslogtreecommitdiffstats
path: root/ue2/imgsynth2/cfile.h
diff options
context:
space:
mode:
authormanuel <manuel@clan-server.at>2009-04-29 16:15:00 +0200
committermanuel <manuel@clan-server.at>2009-04-29 16:15:00 +0200
commitcfd4f77988cf12106e22e52fba6c1b5672a06162 (patch)
treeadeca546331f12c9237b6e9fa3a4f659106dc5c6 /ue2/imgsynth2/cfile.h
parente1ad46101085cc7f8fd766936552b31d67188a15 (diff)
downloadooprog-cfd4f77988cf12106e22e52fba6c1b5672a06162.tar.gz
ooprog-cfd4f77988cf12106e22e52fba6c1b5672a06162.tar.bz2
ooprog-cfd4f77988cf12106e22e52fba6c1b5672a06162.zip
adding filename param to write(...)
Diffstat (limited to 'ue2/imgsynth2/cfile.h')
-rw-r--r--ue2/imgsynth2/cfile.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ue2/imgsynth2/cfile.h b/ue2/imgsynth2/cfile.h
index a5c4d2a..9513a2c 100644
--- a/ue2/imgsynth2/cfile.h
+++ b/ue2/imgsynth2/cfile.h
@@ -75,13 +75,14 @@ class CFile
75 /** 75 /**
76 * @method write 76 * @method write
77 * @brief Pure virtual method (interface). Should write data to filestream. 77 * @brief Pure virtual method (interface). Should write data to filestream.
78 * @param out filestream to write data to 78 * @param out filestream to write data to
79 * @param filename filename (maybe useful for some handlers)
79 * @return - 80 * @return -
80 * @globalvars none 81 * @globalvars none
81 * @exception FileError 82 * @exception FileError
82 * @conditions none 83 * @conditions none
83 */ 84 */
84 virtual void write(std::ofstream& out) = 0; 85 virtual void write(std::ofstream& out, std::string& filename) = 0;
85 86
86 /** 87 /**
87 * @method callFunc 88 * @method callFunc