Init
This commit is contained in:
56
bindings/csharp/interfaces/PacketConsoleLogger.cs
Normal file
56
bindings/csharp/interfaces/PacketConsoleLogger.cs
Normal file
@ -0,0 +1,56 @@
|
||||
/* ----------------------------------------------------------------------------
|
||||
* This file was automatically generated by SWIG (http://www.swig.org).
|
||||
* Version 2.0.12
|
||||
*
|
||||
* Do not make changes to this file unless you know what you are doing--modify
|
||||
* the SWIG interface file instead.
|
||||
* ----------------------------------------------------------------------------- */
|
||||
|
||||
namespace SLNet {
|
||||
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
public class PacketConsoleLogger : PacketLogger {
|
||||
private HandleRef swigCPtr;
|
||||
|
||||
internal PacketConsoleLogger(IntPtr cPtr, bool cMemoryOwn) : base(SLikeNetPINVOKE.PacketConsoleLogger_SWIGUpcast(cPtr), cMemoryOwn) {
|
||||
swigCPtr = new HandleRef(this, cPtr);
|
||||
}
|
||||
|
||||
internal static HandleRef getCPtr(PacketConsoleLogger obj) {
|
||||
return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
|
||||
}
|
||||
|
||||
~PacketConsoleLogger() {
|
||||
Dispose();
|
||||
}
|
||||
|
||||
public override void Dispose() {
|
||||
lock(this) {
|
||||
if (swigCPtr.Handle != IntPtr.Zero) {
|
||||
if (swigCMemOwn) {
|
||||
swigCMemOwn = false;
|
||||
SLikeNetPINVOKE.delete_PacketConsoleLogger(swigCPtr);
|
||||
}
|
||||
swigCPtr = new HandleRef(null, IntPtr.Zero);
|
||||
}
|
||||
GC.SuppressFinalize(this);
|
||||
base.Dispose();
|
||||
}
|
||||
}
|
||||
|
||||
public PacketConsoleLogger() : this(SLikeNetPINVOKE.new_PacketConsoleLogger(), true) {
|
||||
}
|
||||
|
||||
public virtual void SetLogCommandParser(LogCommandParser lcp) {
|
||||
SLikeNetPINVOKE.PacketConsoleLogger_SetLogCommandParser(swigCPtr, LogCommandParser.getCPtr(lcp));
|
||||
}
|
||||
|
||||
public override void WriteLog(string str) {
|
||||
SLikeNetPINVOKE.PacketConsoleLogger_WriteLog(swigCPtr, str);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user