12345678910111213141516171819202122232425262728293031 |
- //
- // Created by anna on 2020/10/21.
- //
- #ifndef GTCVR_DGNS_GTSTANDARD_H
- #define GTCVR_DGNS_GTSTANDARD_H
- #include "iostream"
- class dgns_gtstandard {
- public:
- /*
- * Constructure
- */
- dgns_gtstandard();
- public:
- std::string sgtprodate;
- std::string createtime;
- std::string id;
- double *sgtcharacters;
- long appearcounter;
- std::string graphicfeatureinterpretation;
- double maxsemblance;
- double minsemblance;
- std::string wellname;
- std::string latestupdatedtime;
- };
- #endif //GTCVR_DGNS_GTSTANDARD_H
|