You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/DOM/Model/Flow/ContentElement.cs

26 lines
582 B

6 years ago
using ZeroLevel.Services.Serialization;
namespace ZeroLevel.DocumentObjectModel.Flow
{
public abstract class ContentElement :
IContentElement
{
protected ContentElementType _type;
public ContentElementType Type
{
get
{
return _type;
}
}
protected ContentElement(ContentElementType type)
{
_type = type;
}
public abstract void Serialize(IBinaryWriter writer);
public abstract void Deserialize(IBinaryReader reader);
}
}

Powered by TurnKey Linux.