fastcat 0.13.15
C++ EtherCAT Device Command & Control Library
Loading...
Searching...
No Matches
ati_fts_offline.h
Go to the documentation of this file.
1#ifndef FASTCAT_ATI_FTS_OFFLINE_H_
2#define FASTCAT_ATI_FTS_OFFLINE_H_
3
4// Include related header (for cc files)
5
6// Include c then c++ libraries
7
8// Include external then project includes
9#include "fastcat/jsd/ati_fts.h"
10
11namespace fastcat
12{
13class AtiFtsOffline : public AtiFts
14{
15 public:
16 bool ConfigFromYaml(const YAML::Node& node) override;
17 bool Read() override;
18 FaultType Process() override;
19};
20
21} // namespace fastcat
22
23#endif
Definition ati_fts_offline.h:14
FaultType Process() override
Definition ati_fts_offline.cc:15
bool ConfigFromYaml(const YAML::Node &node) override
Definition ati_fts_offline.cc:8
bool Read() override
Definition ati_fts_offline.cc:13
Definition ati_fts.h:15
Definition device_base.h:18