QuasarAppLib
validableobject.h
Go to the documentation of this file.
1//#
2//# Copyright (C) 2022-2025 QuasarApp.
3//# Distributed under the GPLv3 software license, see the accompanying
4//# Everyone is permitted to copy and distribute verbatim copies
5//# of this license document, but changing it is not allowed.
6//#
7
8
9#ifndef VALIDABLEOBJECT_H
10#define VALIDABLEOBJECT_H
11
12namespace QuasarAppUtils{
13
18{
19public:
21
26 virtual bool isValid() const = 0;
27};
28
33
34}
35#endif // VALIDABLEOBJECT_H
The ValidableObject class is Base interface for all object that can be checked to valid.
virtual bool isValid() const =0
isValid This method return true if the object is valid else false.
The QuasaraAppUtils class This lib include base functions for the all applications of QuasarApp group...
ValidableObject iVO
iVO This is short abriviature of the ValidableObject class.