/*
 * This file is part of the Cforall project
 *
 * $Id: UniqueName.h,v 1.1 2002/04/30 03:30:14 rcbilson Exp $
 *
 */

#ifndef UNIQUENAME_H
#define UNIQUENAME_H

#include <string>

class UniqueName
{
public:
  UniqueName( const std::string &base = "" );

  std::string newName( const std::string &additional = "" );

private:
  std::string base;
  int count;
};

#endif /* #ifndef UNIQUENAME_H */
