FAST.Framework  1.0.0
FChrono.h
1 /******************************************************************************
2 **
3 ** FAST.Framework
4 **
5 ** Created: 2023-10-11
6 ** Author: Boris Fast
7 ** Mail: support@fast-framework.com
8 **
9 ******************************************************************************/
10 
11 #ifndef FCHRONO_H
12 #define FCHRONO_H
13 
14 using namespace std;
15 
16 #include "FObject.h"
17 
21 class FChrono : public FObject
22 {
23  public:
24  FChrono() = default;
25  virtual ~FChrono() = default;
26 
27  void Start() noexcept;
28  FTimeSpan Stop() noexcept;
29 
30  const type_info& GetType() override;
31  FString GetName() const override;
32 
33  private:
34 };
35 
36 #endif // FCHRONO_H
Definition: FChrono.h:22
virtual ~FChrono()=default
Destroy chronograph object.
FChrono()=default
Constructor of chronograph object.
Definition: FObject.h:50
Definition: FString.h:22
Definition: FTimeSpan.h:22