Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
Same as before...
Browse files Browse the repository at this point in the history
  • Loading branch information
DuarteSAssuncao committed Oct 26, 2023
1 parent dcb6e0e commit e6ddaed
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/appClasses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
#include <fstream>
#include <iomanip>

/**
* @file appClasses.cpp
*/

AppClass::AppClass(const std::string& csv) {
// CSV file into memory
std::ifstream file = std::ifstream(csv);
Expand Down
4 changes: 4 additions & 0 deletions src/appClasses.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
#ifndef APPCLASSES_H
#define APPCLASSES_H

/**
* @file appClasses.hpp
*/

class AppClass{
private:
std::string class_cath_name;
Expand Down
4 changes: 4 additions & 0 deletions src/appClassesPerUC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
#include <algorithm>
#include <fstream>

/**
* @file appClassesPerUC.cpp
*/

AppClassPerUC::AppClassPerUC(const std::string& csv, uint8_t cap) {
this->cap = cap;

Expand Down
4 changes: 4 additions & 0 deletions src/appClassesPerUC.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
#include <string>
#include <vector>

/**
* @file appClassesPerUC.hpp
*/

class AppClassPerUC {
private:
std::string uc_cath_name;
Expand Down
4 changes: 4 additions & 0 deletions src/appStudentsClasses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
#include <algorithm>
#include <fstream>

/**
* @file appStudentsClasses.cpp
*/

// Constructor
AppStudentsClasses::AppStudentsClasses(const std::string& csv) {
// CSV file into memory
Expand Down
4 changes: 4 additions & 0 deletions src/appStudentsClasses.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
#include <string>
#include <vector>

/**
* @file appStudentsClasses.hpp
*/

class AppStudentsClasses {
private:
std::string student_code_cath_name;
Expand Down

0 comments on commit e6ddaed

Please sign in to comment.