1 //
2 // C++ Implementation: dsoname
3 //
4 // Description:
5 //
6 //
7 // Author: Toti <root@totibox>, (C) 2005
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12 
13 #include <celengine/dsoname.h>
14 
15 using namespace std;
16 
17 //NOTE: this could be expanded in the near future, so we place it here:
findCatalogNumberByName(const string & name) const18 uint32 DSONameDatabase::findCatalogNumberByName(const string& name) const
19 {
20     return getCatalogNumberByName(name);
21 }
22