/* * Copyright (c) 2002, Stefan Farfeleder * $Id: object_s.cc,v 1.3 2002/09/19 10:42:02 stefan Exp $ */ #include "object.h" #include "object_s.h" using namespace JFK::server; object::object() : update(false), suicide(false), refcnt(0), reappear(0) { } /* set refcnt to 0!!! */ object::object(const object& o) : JFK::object(o), update(o.update), suicide(o.suicide), refcnt(0), reappear(o.reappear) { }