Ignore:
Timestamp:
Nov 7, 2023, 3:38:01 PM (8 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
c6b4432
Parents:
934fa0f
Message:

Made UniqueName? use other tools we have, removed the unused default and did some general clean-up.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/UniqueName.h

    r934fa0f r790d835  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // UniqueName.h --
     7// UniqueName.h -- Create a unique variants of a base name with a counter.
    88//
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Jul 21 22:18:45 2017
    13 // Update Count     : 2
     11// Last Modified By : Andrew Beach
     12// Last Modified On : Tue Nov  7 15:00:00 2023
     13// Update Count     : 3
    1414//
    1515
     
    1919
    2020class UniqueName {
    21   public:
    22         UniqueName( const std::string &base = "" );
     21public:
     22        UniqueName( const std::string &base );
    2323        std::string newName( const std::string &additional = "" );
    24   private:
     24private:
    2525        std::string base;
    2626        int count;
Note: See TracChangeset for help on using the changeset viewer.