#ifndef SQLRUTIL_TEMPDIR_H #define SQLRUTIL_TEMPDIR_H #include #include #ifdef RUDIMENTS_NAMESPACE using namespace rudiments; #endif class tempdir { public: tempdir(cmdline *cmdl); ~tempdir(); char *getString(); int32_t getLength(); protected: char *tmpdir; int32_t tmpdirlen; }; #endif