summaryrefslogtreecommitdiff
path: root/ACE/ace/Obstack_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Obstack_T.inl')
-rw-r--r--ACE/ace/Obstack_T.inl37
1 files changed, 37 insertions, 0 deletions
diff --git a/ACE/ace/Obstack_T.inl b/ACE/ace/Obstack_T.inl
new file mode 100644
index 00000000000..92c90cd44d9
--- /dev/null
+++ b/ACE/ace/Obstack_T.inl
@@ -0,0 +1,37 @@
+// -*- C++ -*-
+//
+// $Id$
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+template <class CHAR> ACE_INLINE size_t
+ACE_Obstack_T<CHAR>::length () const
+{
+ return this->size_ / sizeof (CHAR);
+}
+
+template <class CHAR> ACE_INLINE size_t
+ACE_Obstack_T<CHAR>::size () const
+{
+ return this->size_;
+}
+
+template <class CHAR> ACE_INLINE void
+ACE_Obstack_T<CHAR>::grow_fast (CHAR c)
+{
+ * (reinterpret_cast<CHAR *> (this->curr_->cur_)) = c;
+ this->curr_->cur_ += sizeof (CHAR);
+}
+
+template <class CHAR> ACE_INLINE CHAR *
+ACE_Obstack_T<CHAR>::freeze (void)
+{
+ CHAR *retv = reinterpret_cast<CHAR *> (this->curr_->block_);
+ * (reinterpret_cast<CHAR *> (this->curr_->cur_)) = 0;
+
+ this->curr_->cur_ += sizeof (CHAR);
+ this->curr_->block_ = this->curr_->cur_;
+ return retv;
+}
+
+ACE_END_VERSIONED_NAMESPACE_DECL