100% de satisfacción garantizada Inmediatamente disponible después del pago Tanto en línea como en PDF No estas atado a nada
logo-home
COS3711 Assignment 3 2024 | Due 9 September 2024 2,65 €   Añadir al carrito

Examen

COS3711 Assignment 3 2024 | Due 9 September 2024

1 revisar
 36 vistas  1 compra
  • Grado
  • Institución

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 ...

[Mostrar más]

Vista previa 3 fuera de 21  páginas

  • 25 de junio de 2024
  • 21
  • 2023/2024
  • Examen
  • Preguntas y respuestas

1  revisar

review-writer-avatar

Por: uckerfrancis • 1 semana hace

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

Los beneficios de comprar resúmenes en Stuvia estan en línea:

Garantiza la calidad de los comentarios

Garantiza la calidad de los comentarios

Compradores de Stuvia evaluaron más de 700.000 resúmenes. Así estas seguro que compras los mejores documentos!

Compra fácil y rápido

Compra fácil y rápido

Puedes pagar rápidamente y en una vez con iDeal, tarjeta de crédito o con tu crédito de Stuvia. Sin tener que hacerte miembro.

Enfócate en lo más importante

Enfócate en lo más importante

Tus compañeros escriben los resúmenes. Por eso tienes la seguridad que tienes un resumen actual y confiable. Así llegas a la conclusión rapidamente!

Preguntas frecuentes

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.

100% de satisfacción garantizada: ¿Cómo funciona?

Nuestra garantía de satisfacción le asegura que siempre encontrará un documento de estudio a tu medida. Tu rellenas un formulario y nuestro equipo de atención al cliente se encarga del resto.

Who am I buying this summary 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 this summary for 2,65 €. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

45,681 summaries were sold in the last 30 days

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

Empieza a vender
2,65 €  1x  vendido
  • (1)
  Añadir