/* -*- C++ -*- */ // $Id$ #ifndef MY_MALLOC_H #define MY_MALLOC_H #include "ace/Malloc.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ class Malloc // = TITLE // Allocator Singleton. { public: static ACE_Allocator *instance (void); // Returns static instance. private: Malloc (void); // Ensure Singleton. static ACE_Allocator *instance_; // Malloc Singleton. }; #endif /* MY_MALLOC_H */