Renamed FilesystemNode -> FSNode
svn-id: r34716
This commit is contained in:
parent
31be8a6b3f
commit
c7fde102e3
87 changed files with 435 additions and 434 deletions
|
@ -32,7 +32,7 @@
|
|||
|
||||
namespace Common {
|
||||
class FSList;
|
||||
class FilesystemNode;
|
||||
class FSNode;
|
||||
}
|
||||
|
||||
|
||||
|
@ -242,7 +242,7 @@ protected:
|
|||
* @param node the FSNode of the loadable code module
|
||||
* @return a pointer to a Plugin instance, or 0 if an error occurred.
|
||||
*/
|
||||
virtual Plugin *createPlugin(const Common::FilesystemNode &node) const = 0;
|
||||
virtual Plugin *createPlugin(const Common::FSNode &node) const = 0;
|
||||
|
||||
/**
|
||||
* Check if the supplied file corresponds to a loadable plugin file in
|
||||
|
@ -251,7 +251,7 @@ protected:
|
|||
* @param node the FSNode of the file to check
|
||||
* @return true if the filename corresponds to a plugin, false otherwise
|
||||
*/
|
||||
virtual bool isPluginFilename(const Common::FilesystemNode &node) const;
|
||||
virtual bool isPluginFilename(const Common::FSNode &node) const;
|
||||
|
||||
/**
|
||||
* Optionally add to the list of directories to be searched for
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue