All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.ashampoo.xmp.internal.PathPosition.kt Maven / Gradle / Ivy

// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2006 Adobe Systems Incorporated
// All Rights Reserved
//
// NOTICE:  Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it.
// =================================================================================================
package com.ashampoo.xmp.internal

/**
 * This objects contains all needed char positions to parse.
 */
internal class PathPosition {

    /**
     * the complete path
     */
    var path: String? = null

    /**
     * the start of a segment name
     */
    var nameStart = 0

    /**
     * the end of a segment name
     */
    var nameEnd = 0

    /**
     * the begin of a step
     */
    var stepBegin = 0

    /**
     * the end of a step
     */
    var stepEnd = 0

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy