/*
 * Provides the definition of a generic company.
 */

#include "VideoCompany.h"

VideoCompany::VideoCompany (const char *name)
  : name_ (name)
{
}

char *
VideoCompany::getName (void)
{
  return CORBA::string_dup (name_.c_str ());
}
