Files
mirror-processhacker/trunk/ProcessHacker.Common/IResettable.cs
T
wj32 249345130d added basic FreeList
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1383 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-06-07 06:50:14 +00:00

12 lines
190 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProcessHacker.Common
{
public interface IResettable
{
void ResetObject();
}
}