mirror of https://github.com/ogoun/Zero.git
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.
27 lines
582 B
27 lines
582 B
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);
|
|
}
|
|
} |