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/?p=libs%2Fdatafile.git;a=commitdiff_plain;h=af9389e93274e91c35fffdd713bd469a4bfd3f2c 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; };