Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Other

COS3711 Assignment 2 2024

Rating
4.3
(3)
Sold
4
Pages
18
Uploaded on
17-07-2024
Written in
2023/2024

COS3711 Assignment 2 2024. The UML class diagram is an initial design of classes for a conference registration application. There are three types of registration allowed for the conference: standard registration, student registration and invited guests registration. The standard registration fee is the standard fee (stored in STANDARD_FEE). For those registered as students, the conference fee is half the price of the standard registration fee. For those registered as guests, the conference fee is 10% of the standard registration fee. An instance of RegistrationList contains a list of Registration*. No two registrations are allowed to have attendees with the same e-mail addresses, unless the names are different. You should be able to query a RegistrationList whether a person (by the name) is already registered for the conference. A RegistrationList can also return the number of attendees that are registered for the conference from an institution. Similarly, you can request the total registration fees for a type (“Registration”, “StudentRegistration”, “GuestRegistration” or “All”) of registration. You are expected to use Qt’s metaobject RegistrationList. system to access the type of a Registration inWrite a GUI application that allows users to register for a conference. The GUI should display the current list of registrations, including the respective registration fees, in the RegistrationList at all times, using a table widget. The interface should also allow users to request and view the results of the various operations supported by the RegistrationList class. You are allowed to add new features to the classes given in the UML diagram, although you are not allowed to delete or change the given functions. You can decide on the design of the GUI, and it can be done manually or using Qt Designer. You are expected to follow good programming principles.

Show more Read less
Institution
Module

Content preview

COS3711 2024 Assignment 2 memo
With link to the project at the end of this document


Crystal Indigo!
Crystal Indigo!
Providing all solutions you need anytime
+27 76 626 8187




NOTE: YOU MAY FIND SOME MISSING CLASSES, ADD WHAT YOU SEE NECESSARY

,Output of all the questions




C

,
,
,xml
<registrationlist>
<registration type="Registration">
<attendee>
<name>crystal</name>
<affiliation>unisa</affiliation>
<email></email>
</attendee>
<registrationfee>50</registrationfee>
</registration>
</registrationlist>

, //registration.h
#ifndef REGISTRATION_H
#define REGISTRATION_H


#include <QString>
#include <QObject>


class Registration : public QObject {
Q_OBJECT
public:
explicit Registration(const QString &name, const QString
&email, const QString &affiliation, QObject *parent = nullptr);
virtual double getFee() const = 0;


QString getName() const;
QString getEmail() const;
QString getAffiliation() const;


private:
QString name;
QString email;
QString affiliation;
};


class StandardRegistration : public Registration {
public:
StandardRegistration(const QString &name, const QString
&email, const QString &affiliation);
double getFee() const override;
};


class StudentRegistration : public Registration {
public:

Written for

Institution
Module

Document information

Uploaded on
July 17, 2024
Number of pages
18
Written in
2023/2024
Type
OTHER
Person
Unknown

Subjects

$10.43
Get access to the full document:
Purchased by 4 students

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Reviews from verified buyers

Showing all 3 reviews
1 year ago

1 year ago

1 year ago

4.3

3 reviews

5
1
4
2
3
0
2
0
1
0
Trustworthy reviews on Stuvia

All reviews are made by real Stuvia users after verified purchases.

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
CrystalIndigo University of South Africa (Unisa)
Follow You need to be logged in order to follow users or courses
Sold
486
Member since
5 year
Number of followers
226
Documents
73
Last sold
5 months ago
CrystalIndigo Solutions

providing all solutions to all computer science modules

4.1

51 reviews

5
27
4
13
3
6
2
1
1
4

Trending documents

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these revision notes.

Didn't get what you expected? Choose another document

No problem! You can straightaway pick a different document that better suits what you're after.

Pay as you like, start learning straight away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and smashed it. It really can be that simple.”

Alisha Student

Frequently asked questions