//=========================================================================
// Summary  : */
// Filename : SharedObject.cc
// Author   : */
// Project  : */
// Revision : 1
// Created  : 2000/08/19
// Modified : 2000/08/19
//=========================================================================
// Description :
//=========================================================================
#include <string.h>
#include <malloc.h>
#include <stdio.h>
#include <stdlib.h>
#include "SharedObject.h"
#include "Syslog.h"

SharedObject::SharedObject(const char *name)
{
  _name = strdup(name);
}


SharedObject::~SharedObject()
{
  //  Boolean debug = True;
  //  dprintf("SharedObject::~SharedObject() - free()...");
  free((void *)_name);
  //  dprintf("SharedObject::~SharedObject() - done");
}










