Commit ffbd04bb authored by Alexis Lebis's avatar Alexis Lebis

the #define guards are now google syntax compilant

parent 33982b20
#ifndef DEF_COMPETENCY
#define DEF_COMPETNECY
#ifndef SRC_COMPETENCY_H_
#define SRC_COMPETENCY_H_
#include <string>
#include <magnitude.h>
......@@ -24,4 +24,4 @@ class Competency
Competency();
};
#endif
\ No newline at end of file
#endif // SRC_COMPETENCY_H_
\ No newline at end of file
#ifndef DEF_COURSE
#define DEF_COURSE
#ifndef SRC_COURSE_H_
#define SRC_COURSE_H_
#include <vector>
......@@ -36,4 +36,4 @@ class Course
#endif
\ No newline at end of file
#endif // SRC_COURSE_H_
\ No newline at end of file
#ifndef DEF_MAGNITUDE
#define DEF_MAGNITUDE
#ifndef SRC_MAGNITUDE_H_
#define SRC_MAGNITUDE_H_
/** Magnitude represents the mastery of a competency.
*
......@@ -20,4 +20,4 @@ class Magnitude
bool set(double v);
};
#endif
\ No newline at end of file
#endif // SRC_MAGNITUDE_H_
\ No newline at end of file
#ifndef DEF_PROBLEM
#define DEF_PROBLEM
#ifndef SRC_PROBLEM_H_
#define SRC_PROBLEM_H_
// USE THIS FILE TO MODELISE THE PB, i.e. how many courses are available, etc.
#endif DEF_PROBLEM
\ No newline at end of file
#endif // SRC_PROBLEM_H_
\ No newline at end of file
#ifndef DEF_PROFESSION
#define DEF_PROFESSION
#ifndef SRC_PROFESSION_H_
#define SRC_PROFESSION_H_
#include <vector>
......@@ -21,4 +21,4 @@ class Profession
Profession();
};
#endif
\ No newline at end of file
#endif // SRC_PROFESSION_H_
\ No newline at end of file
#ifndef DEF_MAPI
#define DEF_MAPI
#ifndef SRC_SCALE_MAPI_H_
#define SRC_SCALE_MAPI_H_
#include <scale.h>
......@@ -10,4 +10,4 @@ class MAPIScale : public Scale
public:
};
#endif DEF_MAPI
\ No newline at end of file
#endif // SRC_SCALE_MAPI_H_
\ No newline at end of file
#ifndef DEF_SCALE
#define DEF_SCALE
#ifndef SRC_SCALE_SCALE_H_
#define SRC_SCALE_SCALE_H_
#include <scaleValue.h>
......@@ -15,4 +15,4 @@ class Scale
void getRange(ScaleValue &, double & inf, double & max);
};
#endif DEF_SCALE
\ No newline at end of file
#endif // SRC_SCALE_SCALE_H_
\ No newline at end of file
#ifndef DEF_SCALE_VALUE
#define DEF_SCALE_VALUE
#ifndef SRC_SCALE_SCALE_VALUE_H_
#define SRC_SCALE_SCALE_VALUE_H_
#include <string>
......@@ -15,4 +15,4 @@ class ScaleValue
ScaleValue();
};
#endif DEF_SCALE_VALUE
\ No newline at end of file
#endif // SRC_SCALE_SCALE_VALUE_H_
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment