template struct CCL::NativeString

Helper class encapsulating a native string representation.

#include <cclstring.h>

template <typename Type>
struct NativeString
{
    // fields

    Type nativeString;

    // construction

    NativeString (StringRef string);

    // methods

    operator Type () const;
};