Last change
on this file since 602 was
602,
checked in by rlacroix, 10 years ago
|
Fix compilation: new files were forgotten in r599.
|
File size:
686 bytes
|
Line | |
---|
1 | #include "data_input.hpp" |
---|
2 | |
---|
3 | #include "attribute_template.hpp" |
---|
4 | #include "group_template.hpp" |
---|
5 | #include "context.hpp" |
---|
6 | |
---|
7 | namespace xios |
---|
8 | { |
---|
9 | CDataInput::~CDataInput(void) |
---|
10 | { /* Nothing to do */ } |
---|
11 | |
---|
12 | //---------------------------------------------------------------- |
---|
13 | |
---|
14 | StdSize CDataInput::getFieldNbRecords(CField* field) |
---|
15 | { |
---|
16 | return this->getFieldNbRecords_(field); |
---|
17 | } |
---|
18 | |
---|
19 | //---------------------------------------------------------------- |
---|
20 | |
---|
21 | void CDataInput::readFieldData(CField* field) |
---|
22 | { |
---|
23 | this->readFieldData_(field); |
---|
24 | } |
---|
25 | |
---|
26 | //---------------------------------------------------------------- |
---|
27 | |
---|
28 | void CDataInput::closeFile(void) |
---|
29 | { |
---|
30 | this->closeFile_(); |
---|
31 | } |
---|
32 | } // namespace xios |
---|
Note: See
TracBrowser
for help on using the repository browser.