BigBlueBox
An Inventory Management System for a NYLT Course or other Boy Scout Programs
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Pages
src
gear.h
Go to the documentation of this file.
1
#ifndef GEAR_H
2
#define GEAR_H
3
4
#include <QString>
5
#include <QDateTime>
6
7
class
Gear
8
{
9
10
11
public
:
12
Gear
();
13
14
QString
gearName
;
15
enum
HealthStatus
16
{
17
HEALTHY
,
18
MISSING_PARTS
,
19
NEEDS_MAINTENANCE
,
20
NEEDS_REPAIR
,
21
NEEDS_REPLACE
22
};
23
QDate
obsolDate
;
24
25
26
27
HealthStatus
gearHealth
;
28
};
29
30
//############################################################################
31
//############################################################################
32
//############################################################################
33
34
namespace
bbb {
35
36
class
GearNote
37
{
38
public
:
39
GearNote
();
40
41
QString
noteText
;
42
QString
author
;
43
QDateTime
dtMade
;
44
};
45
}
46
47
#endif // GEAR_H
bbb::GearNote::dtMade
QDateTime dtMade
Definition:
gear.h:43
Gear::MISSING_PARTS
Definition:
gear.h:18
Gear::HEALTHY
Definition:
gear.h:17
bbb::GearNote
Definition:
gear.h:36
Gear::HealthStatus
HealthStatus
Definition:
gear.h:15
Gear::obsolDate
QDate obsolDate
Definition:
gear.h:23
Gear::Gear
Gear()
Definition:
gear.cpp:4
bbb::GearNote::author
QString author
Definition:
gear.h:42
Gear::NEEDS_REPAIR
Definition:
gear.h:20
Gear::gearName
QString gearName
Definition:
gear.h:14
bbb::GearNote::noteText
QString noteText
Definition:
gear.h:41
Gear::NEEDS_MAINTENANCE
Definition:
gear.h:19
bbb::GearNote::GearNote
GearNote()
Definition:
gear.cpp:19
Gear
Definition:
gear.h:7
Gear::NEEDS_REPLACE
Definition:
gear.h:21
Gear::gearHealth
HealthStatus gearHealth
Definition:
gear.h:27
Generated by
1.8.6