| http://www.w3.org/ns/prov#value | - Well a file is a file, and a directory is a "special file that contains files. struct File { string name; shared_ptr< list<File> > pContents; }; bool IsDir(const File &p_File) { return bool(p_File.pContents); // false if pContents is null. }What are the specific features you are talking about?
|