Skip to content

Commit

Permalink
Migrated some code in pre.l to use STL containers (part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Mar 29, 2020
1 parent e688cb8 commit 29f29c2
Show file tree
Hide file tree
Showing 2 changed files with 262 additions and 338 deletions.
63 changes: 11 additions & 52 deletions src/define.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
/******************************************************************************
*
*
*
* Copyright (C) 1997-2015 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
Expand All @@ -18,8 +16,11 @@
#ifndef DEFINE_H
#define DEFINE_H

#include <qdict.h>
#include <qlist.h>
#include <map>
#include <string>
#include <memory>

#include <qcstring.h>

class FileDef;

Expand Down Expand Up @@ -48,52 +49,10 @@ class Define
bool nonRecursive;
};

/** A list of Define objects. */
class DefineList : public QList<Define>
{
public:
DefineList() : QList<Define>() {}
~DefineList() {}
private:
int compareValues(const Define *d1,const Define *d2) const
{
return qstricmp(d1->name,d2->name);
}
};

/** A list of Define objects associated with a specific name. */
class DefineName : public QList<Define>
{
public:
DefineName(const char *n) : QList<Define>() { name=n; }
~DefineName() {}
const char *nameString() const { return name; }

private:
int compareValues(const Define *d1,const Define *d2) const
{
return qstricmp(d1->name,d2->name);
}
QCString name;
};

/** A list of DefineName objects. */
class DefineNameList : public QList<DefineName>
{
public:
DefineNameList() : QList<DefineName>() {}
~DefineNameList() {}
private:
int compareValues(const DefineName *n1,const DefineName *n2) const
{
return qstricmp(n1->nameString(),n2->nameString());
}
};

/** An unsorted dictionary of Define objects. */
typedef QDict<Define> DefineDict;
/** A dictionary of references to Define objects. */
typedef std::map< std::string,Define* > DefineMapRef;

/** A sorted dictionary of DefineName object. */
typedef QDict<DefineName> DefineNameDict;
/** A dictionary of managed Define objects. */
typedef std::map< std::string,std::unique_ptr<Define> > DefineMapOwning;

#endif
Loading

0 comments on commit 29f29c2

Please sign in to comment.