SDXFrameWork  0.13
SDXFrameWork
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
ISpeed.h
1 //Copyright © 2014 SDXFramework
2 //[License]GNU Affero General Public License, version 3
3 //[Contact]http://sourceforge.jp/projects/dxframework/
4 #pragma once
5 
6 namespace SDX
7 {
9  namespace SPEED
10  {
12  class ISpeed
14  {
15  public:
16  virtual ~ISpeed(){};
17 
19  virtual double Get() const = 0;
20 
22  virtual double Update() = 0;
23  };
24  }
25 }
速度のインターフェース.
Definition: ISpeed.h:13
virtual double Update()=0
速度を更新.
virtual double Get() const =0
現在の速度を取得.