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