diff options
Diffstat (limited to 'ace/Obstack.h')
-rw-r--r-- | ace/Obstack.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ace/Obstack.h b/ace/Obstack.h index a4d253ca3f7..5e6fb3748b2 100644 --- a/ace/Obstack.h +++ b/ace/Obstack.h @@ -29,6 +29,9 @@ public: ACE_Obchunk (size_t size); // Constructor. + ~ACE_Obchunk (void); + // dtor. + void dump (void) const; // Dump the state of an object. @@ -96,4 +99,8 @@ protected: // Pointer to the current Obchunk. }; +#if defined (__ACE_INLINE__) +#include "ace/Obstack.i" +#endif /* __ACE_INLINE__ */ + #endif /* ACE_OBSTACK_H */ |