Commit ffbd04bb authored by Alexis Lebis's avatar Alexis Lebis

the #define guards are now google syntax compilant

parent 33982b20
#ifndef DEF_COMPETENCY #ifndef SRC_COMPETENCY_H_
#define DEF_COMPETNECY #define SRC_COMPETENCY_H_
#include <string> #include <string>
#include <magnitude.h> #include <magnitude.h>
...@@ -24,4 +24,4 @@ class Competency ...@@ -24,4 +24,4 @@ class Competency
Competency(); Competency();
}; };
#endif #endif // SRC_COMPETENCY_H_
\ No newline at end of file \ No newline at end of file
#ifndef DEF_COURSE #ifndef SRC_COURSE_H_
#define DEF_COURSE #define SRC_COURSE_H_
#include <vector> #include <vector>
...@@ -36,4 +36,4 @@ class Course ...@@ -36,4 +36,4 @@ class Course
#endif #endif // SRC_COURSE_H_
\ No newline at end of file \ No newline at end of file
#ifndef DEF_MAGNITUDE #ifndef SRC_MAGNITUDE_H_
#define DEF_MAGNITUDE #define SRC_MAGNITUDE_H_
/** Magnitude represents the mastery of a competency. /** Magnitude represents the mastery of a competency.
* *
...@@ -20,4 +20,4 @@ class Magnitude ...@@ -20,4 +20,4 @@ class Magnitude
bool set(double v); bool set(double v);
}; };
#endif #endif // SRC_MAGNITUDE_H_
\ No newline at end of file \ No newline at end of file
#ifndef DEF_PROBLEM #ifndef SRC_PROBLEM_H_
#define DEF_PROBLEM #define SRC_PROBLEM_H_
// USE THIS FILE TO MODELISE THE PB, i.e. how many courses are available, etc. // USE THIS FILE TO MODELISE THE PB, i.e. how many courses are available, etc.
#endif DEF_PROBLEM #endif // SRC_PROBLEM_H_
\ No newline at end of file \ No newline at end of file
#ifndef DEF_PROFESSION #ifndef SRC_PROFESSION_H_
#define DEF_PROFESSION #define SRC_PROFESSION_H_
#include <vector> #include <vector>
...@@ -21,4 +21,4 @@ class Profession ...@@ -21,4 +21,4 @@ class Profession
Profession(); Profession();
}; };
#endif #endif // SRC_PROFESSION_H_
\ No newline at end of file \ No newline at end of file
#ifndef DEF_MAPI #ifndef SRC_SCALE_MAPI_H_
#define DEF_MAPI #define SRC_SCALE_MAPI_H_
#include <scale.h> #include <scale.h>
...@@ -10,4 +10,4 @@ class MAPIScale : public Scale ...@@ -10,4 +10,4 @@ class MAPIScale : public Scale
public: public:
}; };
#endif DEF_MAPI #endif // SRC_SCALE_MAPI_H_
\ No newline at end of file \ No newline at end of file
#ifndef DEF_SCALE #ifndef SRC_SCALE_SCALE_H_
#define DEF_SCALE #define SRC_SCALE_SCALE_H_
#include <scaleValue.h> #include <scaleValue.h>
...@@ -15,4 +15,4 @@ class Scale ...@@ -15,4 +15,4 @@ class Scale
void getRange(ScaleValue &, double & inf, double & max); void getRange(ScaleValue &, double & inf, double & max);
}; };
#endif DEF_SCALE #endif // SRC_SCALE_SCALE_H_
\ No newline at end of file \ No newline at end of file
#ifndef DEF_SCALE_VALUE #ifndef SRC_SCALE_SCALE_VALUE_H_
#define DEF_SCALE_VALUE #define SRC_SCALE_SCALE_VALUE_H_
#include <string> #include <string>
...@@ -15,4 +15,4 @@ class ScaleValue ...@@ -15,4 +15,4 @@ class ScaleValue
ScaleValue(); ScaleValue();
}; };
#endif DEF_SCALE_VALUE #endif // SRC_SCALE_SCALE_VALUE_H_
\ No newline at end of file \ 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