1f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa/*
2f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa * Copyright 2014 Google Inc. All rights reserved.
3f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa *
4f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa * Licensed under the Apache License, Version 2.0 (the "License");
5f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa * you may not use this file except in compliance with the License.
6f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa * You may obtain a copy of the License at
7f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa *
8f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa *     http://www.apache.org/licenses/LICENSE-2.0
9f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa *
10f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa * Unless required by applicable law or agreed to in writing, software
11f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa * distributed under the License is distributed on an "AS IS" BASIS,
12f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa * See the License for the specific language governing permissions and
14f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa * limitations under the License.
15f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa */
16f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa
17223b8e36091a48b3963d2ea6fc7e304b71e26553Pawin Vongmasanamespace FlatBuffers
18f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa{
19f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa    /// <summary>
20223b8e36091a48b3963d2ea6fc7e304b71e26553Pawin Vongmasa    /// All structs in the generated code derive from this class, and add their own accessors.
21f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa    /// </summary>
22255735a38b9d5c3755c7b819bdc8fdaf4357d860Pawin Vongmasa    public struct Struct
23255735a38b9d5c3755c7b819bdc8fdaf4357d860Pawin Vongmasa    {
240d3a5edf232916e81adbc46fc0f4a1753166b066Pawin Vongmasa        public int bb_pos;
25255735a38b9d5c3755c7b819bdc8fdaf4357d860Pawin Vongmasa        public ByteBuffer bb;
26255735a38b9d5c3755c7b819bdc8fdaf4357d860Pawin Vongmasa    }
27255735a38b9d5c3755c7b819bdc8fdaf4357d860Pawin Vongmasa}
28f62ea8018813951e8f6a182880cadb3217e4ce37Pawin Vongmasa