コード例 #1
0
ファイル: juce_File.cpp プロジェクト: baeksanchang/juce
BEGIN_JUCE_NAMESPACE

#include "juce_File.h"
#include "juce_FileInputStream.h"
#include "juce_FileOutputStream.h"
#include "juce_DirectoryIterator.h"
#include "juce_TemporaryFile.h"
#include "../../core/juce_SystemStats.h"
#include "../../maths/juce_Random.h"
#include "../../core/juce_PlatformUtilities.h"
#include "../../memory/juce_ScopedPointer.h"


//==============================================================================
File::File (const String& fullPathName)
    : fullPath (parseAbsolutePath (fullPathName))
{
}
コード例 #2
0
ファイル: juce_File.cpp プロジェクト: llloret/osmid
File& File::operator= (const String& newPath)
{
    fullPath = parseAbsolutePath (newPath);
    return *this;
}
コード例 #3
0
File::File (const String& fullPathName)
    : fullPath (parseAbsolutePath (fullPathName))
{
}