| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Runtime.Remoting.Services.TrackingServices.cs
- //
- // Author:
- // Jaime Anguiano Olarra ([email protected])
- //
- // (C) 2002, Jaime Anguiano Olarra
- //
- // FIXME: This is just a skeleton for practical purpouses.
- //
- using System;
- using System.Runtime.Remoting;
- namespace System.Runtime.Remoting.Services
- {
- [MonoTODO]
- public class TrackingServices
- {
- public TrackingServices () {
- }
- public static void RegisterTrackingHandler (ITrackingHandler handler) {
- throw new NotImplementedException ();
- }
- public static void UnregisterTrackingHandler (ITrackingHandler handler) {
- throw new NotImplementedException ();
- }
- }
- }
|