001/*
002 * Copyright (C) Cross The Road Electronics.  All rights reserved.
003 * License information can be found in CTRE_LICENSE.txt
004 * For support and suggestions contact support@ctr-electronics.com or file
005 * an issue tracker at https://github.com/CrossTheRoadElec/Phoenix-Releases
006 */
007package com.ctre.phoenixpro.configs;
008
009import com.ctre.phoenix6.StatusCode;
010import com.ctre.phoenixpro.ISerializable;
011
012/**
013 * @deprecated Classes in the phoenixpro package will be removed in 2024.
014 *             Users should instead use classes from the phoenix6 package.
015 */
016@Deprecated(forRemoval = true)
017public interface ParentConfiguration extends ISerializable {
018    public StatusCode deserialize(String str);
019}