OSDN Git Service

Wordのパリティ生成を実装
[yubeshi/yubeshi.git] / Yubeshi / Gps / Subframe.cs
1 /*\r
2  *      Yubeshi GPS Parser\r
3  *\r
4  *      This software is distributed under a zlib-style license.\r
5  *      See license.txt for more information.\r
6  */\r
7 \r
8 using System;\r
9 using System.Collections.Generic;\r
10 using System.Text;\r
11 \r
12 namespace Yubeshi.Gps\r
13 {\r
14     public abstract class Subframe\r
15     {\r
16         #region fields\r
17         protected Word[] words;\r
18         #endregion\r
19 \r
20         #region constructor\r
21         public Subframe(Word[] words)\r
22         {\r
23             this.words = words;\r
24         }\r
25 \r
26         #endregion\r
27 \r
28     }\r
29 }\r