-
Notifications
You must be signed in to change notification settings - Fork 3
/
NodeIdentMsh.h
38 lines (33 loc) · 958 Bytes
/
NodeIdentMsh.h
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
32
33
34
35
36
37
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: NodeIdentMsh.h
* Author: Truong
*
* Created on June 12, 2021, 1:02 PM
*/
#include "NodeIdent.h"
class NodeIdentMsh : public NodeIdent {
public:
NodeIdentMsh() {};
NodeIdentMsh(unsigned, unsigned, unsigned, unsigned, unsigned);
unsigned getIdent();
unsigned getElemTyp();
unsigned getNbTags();
unsigned getTag1();
unsigned getTag2();
NodeIdentMsh* setIdent(unsigned);
NodeIdentMsh* setElemTyp(unsigned);
NodeIdentMsh* setNbTags(unsigned);
NodeIdentMsh* setTag1(unsigned);
NodeIdentMsh* setTag2(unsigned);
private:
unsigned ident;
unsigned elemTyp;
unsigned nbTags;
unsigned tag1;
unsigned tag2;
};