100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
COS3711 Assignment 3 2024 | Due 9 September 2024 $2.95   Add to cart

Exam (elaborations)

COS3711 Assignment 3 2024 | Due 9 September 2024

1 review
 37 views  1 purchase
  • Course
  • Institution

Question 1 Write an application that can be used to process Staff member details. The fields that should be stored include: • A name, • A birthdate, and • A staff appointment type (one of permanent, part-time, or contract, stored as an enum). Note that the getter and setter for this ...

[Show more]

Preview 3 out of 21  pages

  • June 25, 2024
  • 21
  • 2023/2024
  • Exam (elaborations)
  • Questions & answers

1  review

review-writer-avatar

By: uckerfrancis • 3 weeks ago

avatar-seller
, PLEASE USE THIS DOCUMENT AS A GUIDE TO ANSWER YOUR ASSIGNMENT


Please note that the author of this document will not responsibility for any plagiarizing you
commit.

 Question 1

Write an application that can be used to process Staff member details. The fields that should be
stored include:
 A name,
 A birthdate, and
 A staff appointment type (one of permanent, part-time, or contract, stored as an enum). Note
that the getter and setter for this data member may be done using a QString.

The application should allow a user to enter details via GUI. Also, once a staff member’s details
are entered, they should be written to file (in any acceptable format) and stored in a container in
the application. Ensure that you adhere to basic design principles, and avoid any anti-patterns in
the design of your solution.

Project Structure:
 CMakeLists.txt
 main.cpp
 StaffMember.h
 StaffMember.cpp
 MainWindow.h
 MainWindow.cpp
 MainWindow.ui (Optional if you prefer not using Qt Designer)

CMakeLists.txt
Create a `CMakeLists.txt` file to set up the project configuration.

CODE
cmake_minimum_required(VERSION 3.5)

project(StaffManager)

set(CMAKE_CXX_STANDARD 14)

find_package(Qt5 COMPONENTS Core Widgets REQUIRED)

set(SOURCES
main.cpp
MainWindow.cpp
StaffMember.cpp
)

set(HEADERS
MainWindow.h
StaffMember.h

, )

add_executable(StaffManager ${SOURCES} ${HEADERS})

target_link_libraries(StaffManager Qt5::Core Qt5::Widgets)

StaffMember.h
Define the `StaffMember` class with necessary fields and methods.

CODE
#ifndef STAFFMEMBER_H
#define STAFFMEMBER_H

#include <QString>
#include <QDate>

enum class AppointmentType {
Permanent,
PartTime,
Contract
};

class StaffMember {
public:
StaffMember(const QString& name, const QDate& birthdate, AppointmentType type);

QString getName() const;
void setName(const QString& name);

QDate getBirthdate() const;
void setBirthdate(const QDate& birthdate);

QString getAppointmentType() const;
void setAppointmentType(const QString& type);

private:
QString name;
QDate birthdate;
AppointmentType appointmentType;
};

#endif // STAFFMEMBER_H

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller Aimark94. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $2.95. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

77764 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$2.95  1x  sold
  • (1)
  Add to cart