趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
SizeF.h
Go to the documentation of this file.
1 #ifndef HRK_SIZE_F_H
2 #define HRK_SIZE_F_H
3 
9 namespace hrk
10 {
12  class SizeF
13  {
14  public:
15  SizeF(void);
16  SizeF(double width, double height);
17 
18  double width(void) const;
19  double height(void) const;
20 
22  void set_width(double width);
23 
25  void set_height(double height);
26 
27  SizeF& operator += (const SizeF& rhs);
28  const SizeF operator + (const SizeF& rhs) const;
29  SizeF& operator -= (const SizeF& rhs);
30  const SizeF operator - (const SizeF& rhs) const;
31 
32  SizeF& operator *= (double rhs);
33  SizeF operator * (double rhs);
34 
35  private:
36  double width_;
37  double height_;
38  };
39 }
40 
41 #endif
void set_height(double height)
height の値を登録する
Definition: SizeF.cpp:40
void set_width(double width)
width の値を登録する
Definition: SizeF.cpp:34
幅と高さ
Definition: SizeF.h:12