![]() |
Limb Range Analyzer
Cross-platform application for human limb range analysis.
|
Class that represents single limb analysis exercise record. More...
#include <exercise.hpp>
Public Member Functions | |
| Exercise () | |
| Constructor of Exercise class. More... | |
| Exercise (QString id, qint16 min, qint16 max, qint16 range) | |
| Parametric constructor of Exercise class. More... | |
| ~Exercise () | |
| Base destructor of class Exercise. More... | |
| QString & | Exercise_GetID () |
Getter function meant for exercise mID retrieval. More... | |
| qint16 | Exercise_GetMin () |
Getter function used as a mMin retriever. More... | |
| qint16 | Exercise_GetMax () |
Getter function used as a mMax retriever. More... | |
| qint16 | Exercise_GetRange () |
Getter function used as a mRange obtainer. More... | |
| QStringList | Exercise_GetAllFormatted () |
| Extended getter function that returns all members in a formatted manner. More... | |
Class that represents single limb analysis exercise record.
Class responsible for exercise specification, which is later used as a component of client's Session. The class consists of key measurement attributes such as minimum and maximum measured value or total range. Exercises within a Session can be distinguished through their identifier.
| Exercise::Exercise | ( | ) |
Constructor of Exercise class.
Constructor function responsible for initial member setting with no parameters.
| Exercise::Exercise | ( | QString | id, |
| qint16 | min, | ||
| qint16 | max, | ||
| qint16 | range | ||
| ) |
Parametric constructor of Exercise class.
Parametric constructor that is used while creating instance of previously measured exercise.
| id | - an exercise identifier to be set |
| min | - minimum measured exercise value (degrees) |
| max | - maximum measured exercise value (degrees) |
| range | - measured range of an exercise in degrees |
| Exercise::~Exercise | ( | ) |
Base destructor of class Exercise.
Destructor function created for memory deallocation.
| QStringList Exercise::Exercise_GetAllFormatted | ( | ) |
Extended getter function that returns all members in a formatted manner.
Function reads current member variables and returns them in a QString form placed into a list.
| QString & Exercise::Exercise_GetID | ( | ) |
Getter function meant for exercise mID retrieval.
Function is used as a getter of mID attribute.
L or R (left/right limb) and an exercise index. | qint16 Exercise::Exercise_GetMax | ( | ) |
Getter function used as a mMax retriever.
Function allows exercise maximum value reading.
| qint16 Exercise::Exercise_GetMin | ( | ) |
Getter function used as a mMin retriever.
Function that allows reading of minimum property.
| qint16 Exercise::Exercise_GetRange | ( | ) |
Getter function used as a mRange obtainer.
This function provides reading of exercise range member variable.