OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
SDDSReader.h
Go to the documentation of this file.
1#ifndef __SDDSREADER_H__
2#define __SDDSREADER_H__
3
4#include "SDDSParser.h"
5
7{
8 public:
9 SDDSReader(const std::string &fname):
10 SDDSParser(fname)
11 { }
12
13 inline void parseFile()
14 {
15 run();
16 }
17};
18
19#endif
void parseFile()
Definition: SDDSReader.h:13
SDDSReader(const std::string &fname)
Definition: SDDSReader.h:9