struct CCL::POSIXPath

Overview

Helper class for converting URL to POSIX-style path. More…

#include <iurl.h>

struct POSIXPath
{
    // fields

    char path [IUrl::kMaxLength];

    // construction

    POSIXPath ();
    POSIXPath (UrlRef url);

    // methods

    bool isValid () const;
    int size () const;
    operator const char * () const;
    operator char * ();
};

Detailed Documentation

Helper class for converting URL to POSIX-style path.

<>