From: Mikko Rasa Date: Sat, 18 Aug 2012 21:16:13 +0000 (+0300) Subject: Make DirectoryCollection::lookup_file available to derived classes X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;ds=sidebyside;h=af9389e93274e91c35fffdd713bd469a4bfd3f2c;hp=9fd9af66cf20cdc3d217f273835410eb2c8c362b;p=libs%2Fdatafile.git Make DirectoryCollection::lookup_file available to derived classes --- diff --git a/source/directorycollection.h b/source/directorycollection.h index 93f9354..54bf62a 100644 --- a/source/directorycollection.h +++ b/source/directorycollection.h @@ -43,6 +43,7 @@ private: return 0; } +protected: bool lookup_file(const std::string &, FS::Path &) const; };