24 lines
627 B
C#
24 lines
627 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace ASCOM.Meade.net
|
|
{
|
|
[ComVisible(false)]
|
|
public class ReferenceCountedObjectBase
|
|
{
|
|
public ReferenceCountedObjectBase()
|
|
{
|
|
// We increment the global count of objects.
|
|
Server.CountObject();
|
|
}
|
|
|
|
~ReferenceCountedObjectBase()
|
|
{
|
|
// We decrement the global count of objects.
|
|
Server.UncountObject();
|
|
// We then immediately test to see if we the conditions
|
|
// are right to attempt to terminate this server application.
|
|
Server.ExitIf();
|
|
}
|
|
}
|
|
}
|