⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datalogger.h

📁 Thinking in C++ 2nd edition source code which are all the cores of the book Thinking in C++ second e
💻 H
字号:
//: C19:DataLogger.h
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Datalogger record layout
#ifndef DATALOG_H_
#define DATALOG_H_
#include <ctime>
#include <iostream>

class DataPoint {
  std::tm Tm; // Time & day
  static const int bsz = 10;
  // Ascii degrees (*) minutes (') seconds ("):
  char Latitude[bsz], Longitude[bsz];
  double Depth, Temperature;
public:
  std::tm Time(); // Read the time
  void Time(std::tm t); // Set the time
  const char* latitude(); // Read
  void latitude(const char* l); // Set
  const char* longitude(); // Read
  void longitude(const char* l); // Set
  double depth(); // Read
  void depth(double d); // Set
  double temperature(); // Read
  void temperature(double t); // Set
  void print(std::ostream& os);
};
#endif // DATALOG_H_ ///:~

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -