Returns whether the plugin should be enabled or not in the contextual menu. If not overridden, it will always be enabled. @param p_ParentPath Path of the parent directory of files that triggered the contextual menu. @param p_File Path of one file that was selected. @return true if plugin should be enabled in contextual menu.
| 87 | // @return true if plugin should be enabled in contextual menu. |
| 88 | // |
| 89 | bool Plugin::Enabled(const std::wstring& /*p_ParentPath*/, |
| 90 | const std::wstring& /*p_File*/) const noexcept(false) |
| 91 | { |
| 92 | return true; |
| 93 | } |
| 94 | |
| 95 | // |
| 96 | // Returns the separator to use between each path when using this plugin. |
no outgoing calls
no test coverage detected