Computes the path of the given file and returns it. This sample plugin simply returns the file path as-is. @param p_File File path. @return File path itself.
| 60 | // @return File path itself. |
| 61 | // |
| 62 | std::wstring SamplePlugin::GetPath(const std::wstring& p_File) const |
| 63 | { |
| 64 | return p_File; |
| 65 | } |
| 66 | |
| 67 | } // namespace Plugins |
| 68 |
nothing calls this directly
no outgoing calls
no test coverage detected