Skip to content

Commit

Permalink
Change file layout -> fileds, constructors, properties. Chage abstrac…
Browse files Browse the repository at this point in the history
…t class constructor visibility to protected.
  • Loading branch information
pluskal committed Dec 12, 2019
1 parent a748b58 commit d634aab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions KaitaiStruct.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ public abstract class KaitaiStruct
{
protected KaitaiStream m_io;

protected KaitaiStruct(KaitaiStream io)
{
m_io = io;
}

public KaitaiStream M_Io
{
get
{
return m_io;
}
}

public KaitaiStruct(KaitaiStream io)
{
m_io = io;
}
}
}

0 comments on commit d634aab

Please sign in to comment.