|
From: <net...@us...> - 2003-09-15 09:15:59
|
Update of /cvsroot/cpptool/rfta/src/rfta
In directory sc8-pr-cvs1:/tmp/cvs-serv5556/rfta
Added Files:
IdentifierAttributes.h
Log Message:
-- identifier attributes seperated
--- NEW FILE: IdentifierAttributes.h ---
// //////////////////////////////////////////////////////////////////////////
// (c)Copyright 2003, Andre Baresel.
// Created: 2003/09/15
// //////////////////////////////////////////////////////////////////////////
#ifndef RFTA_IDENTIFIERATTRIBUTES_H
#define RFTA_IDENTIFIERATTRIBUTES_H
namespace Refactoring {
class IdentifierAttributes {
public:
enum type {
NoAttribute = 0,
ClassIdentifier = 1,
EnumIdentifier = 2,
UnionIdentifier = 3,
StructIdentifier = 4,
NamespaceIdentifier = 5
};
private:
IdentifierAttributes();
};
}
#endif
|