#ifndef CRUCIBLE_CLEANUP_H #define CRUCIBLE_CLEANUP_H #include namespace crucible { using namespace std; class Cleanup { function m_cleaner; public: Cleanup(function func); ~Cleanup(); }; } #endif // CRUCIBLE_CLEANUP_H