Skip to content
Snippets Groups Projects
Commit f7ab4a66 authored by Bianca Cristina Cristescu's avatar Bianca Cristina Cristescu Committed by Axel Naumann
Browse files

Remove overload of FindObject.

parent 4903a3c5
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,6 @@ public:
using THashList::FindObject;
virtual TObject *FindObject(const char *name) const;
virtual TObject *FindObject(const TObject *obj) const;
TDictionary *Get(DeclId_t id);
TDictionary *Get(DataMemberInfo_t *info);
......
......@@ -59,7 +59,6 @@ public:
using THashList::FindObject;
virtual TObject *FindObject(const char *name) const;
virtual TObject *FindObject(const TObject *obj) const;
TEnum *Get(DeclId_t id, const char *name);
......
......@@ -64,7 +64,6 @@ public:
using THashList::FindObject;
virtual TObject *FindObject(const char *name) const;
virtual TObject *FindObject(const TObject *obj) const;
virtual TList *GetListForObject(const char* name) const;
virtual TList *GetListForObject(const TObject* obj) const;
......
......@@ -193,15 +193,6 @@ TObject *TListOfDataMembers::FindObject(const char *name) const
return result;
}
//______________________________________________________________________________
TObject *TListOfDataMembers::FindObject(const TObject *obj) const
{
// Specialize FindObject to do search for the
// a data member or create it if its not already in the list
return FindObject(obj->GetName());
}
//______________________________________________________________________________
TDictionary *TListOfDataMembers::Get(DeclId_t id)
{
......
......@@ -187,15 +187,6 @@ TObject *TListOfEnums::FindObject(const char *name) const
return result;
}
//______________________________________________________________________________
TObject *TListOfEnums::FindObject(const TObject *obj) const
{
// Specialize FindObject to do search for the
// a enum or create it if its not already in the list
return FindObject(obj->GetName());
}
//______________________________________________________________________________
TEnum *TListOfEnums::Get(DeclId_t id, const char *name)
{
......
......@@ -186,15 +186,6 @@ TObject *TListOfFunctions::FindObject(const char *name) const
return result;
}
//______________________________________________________________________________
TObject *TListOfFunctions::FindObject(const TObject *obj) const
{
// Specialize FindObject to do search for the
// a function or create it if its not already in the list
return FindObject(obj->GetName());
}
//______________________________________________________________________________
TList* TListOfFunctions::GetListForObjectNonConst(const char* name)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment