Added the missing Inode::IsContainer() method, thanks to Marcus for pointing

this out!


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2034 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2002-11-20 17:16:01 +00:00
parent fe8ba34097
commit af04ec0bfd
@@ -39,6 +39,7 @@ class Inode {
bfs_inode *Node() { return (bfs_inode *)1; }
off_t Size() const { return fSize; }
bool IsContainer() const { return true; }
bool IsDirectory() const { return true; }
private: