-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconceptmapcompetency.h
More file actions
31 lines (25 loc) · 1010 Bytes
/
conceptmapcompetency.h
File metadata and controls
31 lines (25 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef CONCEPTMAPCOMPETENCY_H
#define CONCEPTMAPCOMPETENCY_H
#include <iosfwd>
namespace ribi {
namespace cmap {
enum class Competency
{
uninitialized, //Not yet set, must equal zero
profession, //NL: 'Beroepsdomein'
organisations, //NL: 'Organisaties'
social_surroundings, //NL: 'Sociale omgeving'
target_audience, //NL 'Doelgroep'
ti_knowledge, //'Technical Instrumental', NL: 'Technische instrumentele kennis'
prof_growth, //Professionele groei
misc, //NL: 'Overig'
n_competencies //Used for debugging only
};
std::string CompetencyToStr(const Competency competency) noexcept;
std::string CompetencyToStrDutch(const Competency competency) noexcept;
std::string CompetencyToStrDutchShort(const Competency competency) noexcept;
Competency StrToCompetency(const std::string s);
std::ostream& operator<<(std::ostream& os, const Competency competency);
} //~namespace cmap
} //~namespace ribi
#endif // CONCEPTMAPCOMPETENCY_H