// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.pqc.crypto.picnic;

class KMatricesWithPointer extends KMatrices
{
    private int matrixPointer;
    
    public KMatricesWithPointer(final KMatrices kMatrices) {
        super(kMatrices.getNmatrices(), kMatrices.getRows(), kMatrices.getColumns(), kMatrices.getData());
        this.matrixPointer = 0;
    }
    
    public int getMatrixPointer() {
        return this.matrixPointer;
    }
    
    public void setMatrixPointer(final int matrixPointer) {
        this.matrixPointer = matrixPointer;
    }
}
