///////////////////////////////////////////////////////////////////////////////// // Paint.NET // // Copyright (C) Rick Brewster, Tom Jackson, and past contributors. // // Portions Copyright (C) Microsoft Corporation. All Rights Reserved. // // See src/Resources/Files/License.txt for full licensing and attribution // // details. // // . // ///////////////////////////////////////////////////////////////////////////////// using System; namespace PaintDotNet.Effects { [Serializable] public abstract class EffectConfigToken : ICloneable { /// /// This should simply call "new myType(this)" ... do not call base class' /// implementation of Clone, as this is handled by the constructors. /// public abstract object Clone(); public EffectConfigToken() { } protected EffectConfigToken(EffectConfigToken copyMe) { } } }