linedata.cpp 144 B

1234567891011121314151617
  1. #include "linedata.h"
  2. GeoData::GeoData()
  3. {
  4. mnType = 0;
  5. }
  6. LineData::LineData()
  7. {
  8. mnType = 1;
  9. }
  10. ArcData::ArcData()
  11. {
  12. mnType = 2;
  13. }