Returns the separator to use between each path when using this plugin. The default value is the empty string, which instructs PCC to use the default value (usually a newline). @return Separator between each path, or empty string to use default value.
| 100 | // @return Separator between each path, or empty string to use default value. |
| 101 | // |
| 102 | std::wstring Plugin::PathsSeparator() const |
| 103 | { |
| 104 | return L""; |
| 105 | } |
| 106 | |
| 107 | // |
| 108 | // Checks if this plugin wants to copy paths recursively. |