123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
-
-
-
-
-
-
- #ifndef LAYEREDEARTHEMREADER_INC
- #define LAYEREDEARTHEMREADER_INC
-
- #include "LemmaObject.h"
- #include "ASCIIParser.h"
- #include "LayeredEarthEM.h"
-
- namespace Lemma {
-
-
-
- class LayeredEarthEMReader : public LemmaObject {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const LayeredEarthEMReader &ob);
-
- public:
-
-
-
-
-
- static std::shared_ptr<LayeredEarthEMReader> NewSP();
-
-
- explicit LayeredEarthEMReader ( const ctor_key& );
-
-
- LayeredEarthEMReader ( const YAML::Node& node, const ctor_key& );
-
-
- virtual ~LayeredEarthEMReader ();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- void ReadASCIIInputFile( const std::string& name );
-
-
-
-
-
- std::shared_ptr<LayeredEarthEM> GetLayeredEarth();
-
-
-
-
- virtual std::string GetName() const {
- return this->CName;
- }
-
- protected:
-
-
-
- private:
-
-
-
- std::shared_ptr<LayeredEarthEM> LayEarth;
-
-
- static constexpr auto CName = "LayeredEarthEMReader";
-
- };
-
-
- }
-
- #endif
|