22 lines
462 B
C#
22 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace ServerBase;
|
|
|
|
|
|
//===================================================================================
|
|
// 로그 주체를 지칭한다
|
|
//===================================================================================
|
|
public abstract class ILogActor
|
|
{
|
|
public virtual bool fillup(IFormatter formatter)
|
|
{
|
|
return false;
|
|
}
|
|
}
|