blob: 826cfbb50d6ae6912496db3661fd161678692430 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.wireguard.config;
/**
* Interface for classes that can perform a deep copy of their objects.
*/
public interface Copyable<T> {
T copy();
void copyFrom(T source);
}
|