JODA  0.13.1 (59b41972)
JSON On-Demand Analysis
TemporaryOrigin.h
Go to the documentation of this file.
1 //
2 // Created by Nico Schäfer on 30/07/18.
3 //
4 
5 #ifndef JODA_TEMPORARYORIGIN_H
6 #define JODA_TEMPORARYORIGIN_H
7 
8 #include "IOrigin.h"
9 
14 class TemporaryOrigin : public IOrigin {
15  public:
16  bool isReparsable() const override;
17  std::unique_ptr<IOrigin> clone() const override;
18  std::string toString() const override;
19 };
20 
21 #endif // JODA_TEMPORARYORIGIN_H
Definition: IOrigin.h:21
Definition: TemporaryOrigin.h:14
std::unique_ptr< IOrigin > clone() const override
Definition: TemporaryOrigin.cpp:9
bool isReparsable() const override
Definition: TemporaryOrigin.cpp:7
std::string toString() const override
Definition: TemporaryOrigin.cpp:13