summaryrefslogtreecommitdiff
path: root/examples/Shared_Malloc/Malloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Shared_Malloc/Malloc.h')
-rw-r--r--examples/Shared_Malloc/Malloc.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/examples/Shared_Malloc/Malloc.h b/examples/Shared_Malloc/Malloc.h
deleted file mode 100644
index 6d4cb6bfc12..00000000000
--- a/examples/Shared_Malloc/Malloc.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/* -*- 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 */