mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Tidy up
This commit is contained in:
parent
1059f7b022
commit
fc0f6b1f2f
27 changed files with 12 additions and 71 deletions
|
|
@ -23,9 +23,6 @@
|
|||
namespace juce
|
||||
{
|
||||
|
||||
FileSearchPath::FileSearchPath() {}
|
||||
FileSearchPath::~FileSearchPath() {}
|
||||
|
||||
FileSearchPath::FileSearchPath (const String& path)
|
||||
{
|
||||
init (path);
|
||||
|
|
|
|||
|
|
@ -36,7 +36,10 @@ class JUCE_API FileSearchPath
|
|||
public:
|
||||
//==============================================================================
|
||||
/** Creates an empty search path. */
|
||||
FileSearchPath();
|
||||
FileSearchPath() = default;
|
||||
|
||||
/** Destructor. */
|
||||
~FileSearchPath() = default;
|
||||
|
||||
/** Creates a search path from a string of pathnames.
|
||||
|
||||
|
|
@ -53,9 +56,6 @@ public:
|
|||
/** Copies another search path. */
|
||||
FileSearchPath& operator= (const FileSearchPath&);
|
||||
|
||||
/** Destructor. */
|
||||
~FileSearchPath();
|
||||
|
||||
/** Uses a string containing a list of pathnames to re-initialise this list.
|
||||
|
||||
This search path is cleared and the semicolon- or comma-separated folders
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue