blob: 447c82086087238365ea5946e1526fc473803389 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
using System;
namespace DBus.DBusType
{
  /// <summary>
  /// Base class for DBusTypes
  /// </summary>
  public interface IDBusType
  {
    object Get();
    
    object Get(System.Type type);  
    void Append(IntPtr iter);
  }
}
  |