Files
2025-05-18 13:04:45 +08:00

17 lines
274 B
C++

/*
* Copyright (c) 2014 Eran Pe'er.
*
* This program is made available under the terms of the MIT License.
*
* Created on Mar 10, 2014
*/
#pragma once
namespace fakeit {
class Destructible {
public:
virtual ~Destructible() THROWS {
}
};
}