src/core/ref-count-base.cc
changeset 2946 14194a052b7d
parent 2775 03a23eb5f1e8
child 3395 3b6bc7a4f975
--- a/src/core/ref-count-base.cc	Thu Apr 10 12:24:36 2008 -0700
+++ b/src/core/ref-count-base.cc	Thu Apr 10 12:59:15 2008 -0700
@@ -30,6 +30,15 @@
 {
 }
 
+RefCountBase::RefCountBase (const RefCountBase &o)
+ : m_count (1)
+{}
+RefCountBase &
+RefCountBase::operator = (const RefCountBase &o)
+{
+  return *this;
+}
+
 RefCountBase::~RefCountBase () 
 {
 }