.\" This manpage has been automatically generated by docbook2man .\" from a DocBook document. This tool can be found at: .\" .\" Please send any bug reports, improvements, comments, patches, .\" etc. to Steve Cheng . .TH "cepTmpClean" "3" "26 November 2002" "" "" .SH NAME cepTmpClean \- cleanup temporary files created by GDMS .SH SYNOPSIS .nf #include "cepTmpClean.h" cepTmpClean::cepTmpClean(string path, string pattern); cepError cepTmpClean::execute(int& deleted, bool doDelete); .fi .SH "DESCRIPTION" .PP GDMS creates temporary files for the various graphs that it draws. Normally these temporary files are stored in /tmp. Over only a few graph executions, it is possible to have a fairly large number of temporary files, which might cause the filesystem which /tmp is stored on to run out of disc space. This class automates the removal of these old files, and is called whenever the interactive version of GDMS starts up. This class is extremely easy to use. Please refer to the example below for more details. .SH "EXAMPLE" .nf #include "cepTmpClean.h"; cepTmpClean cleaner("/tmp", "cep*"); int deleted; cleaner.execute(deleted, true); .fi .SH "VERSION" .PP This documentation was generated for the \fBGeodetic Data Manipulation System\fR 0.1 by \fBautodocbook\fR (http://www.stillhq.com). .SH "AUTHOR" .PP The \fBGeodetic Data Manipulation System\fR is under development by Michael Still (mikal@stillhq.com), Daniel Fernandez, Kristy Van Der Vlist, Blake Swadling, and Nick Wheatstone. All code is Copyright 2002 Michael Still, Daniel Fernandez, Kristy Van Der Vlist, Blake Swadling and Nick Wheatstone, and is released under the GNU GPL. Code submissions are welcomed. Contact Michael at the address above if you have something you would like to contribute. .SH "BUGS" .PP There are no known bugs in the \fBGeodetic Data Manipulation System\fR. If you find one, please contact mikal@stillhq.com and let me know.