Last change
on this file since 15012 was 15012, checked in by Mathieu Morlighem, 12 years ago |
CHG: moved classes/objects back to classes
|
File size:
740 bytes
|
Line | |
---|
1 | #ifndef _CONTAINER_CONSTRAINTS_H_
|
---|
2 | #define _CONTAINER_CONSTRAINTS_H_
|
---|
3 |
|
---|
4 | /*forward declarations */
|
---|
5 | #include "../DataSet.h"
|
---|
6 | #include "../../shared/shared.h"
|
---|
7 |
|
---|
8 | /*! \brief Declaration of Constraints class.
|
---|
9 | *
|
---|
10 | * Declaration of Constraints class for handling Single Point Constraints (SPCs).
|
---|
11 | * Constraints are vector lists (Containers) of Constraint objects.
|
---|
12 | */
|
---|
13 | class Constraints: public DataSet{
|
---|
14 |
|
---|
15 | public:
|
---|
16 |
|
---|
17 | /*Object constructors and destructor*/
|
---|
18 | /*FUNCTION Constraints::Constraints(){{{*/
|
---|
19 | Constraints(){
|
---|
20 | enum_type=ConstraintsEnum;
|
---|
21 | return;
|
---|
22 | }
|
---|
23 | /*}}}*/
|
---|
24 | /*FUNCTION Constraints::~Constraints(){{{*/
|
---|
25 | ~Constraints(){
|
---|
26 | return;
|
---|
27 | }
|
---|
28 | /*}}}*/
|
---|
29 |
|
---|
30 |
|
---|
31 | /*numerics*/
|
---|
32 | int NumberOfConstraints(void);
|
---|
33 |
|
---|
34 | };
|
---|
35 |
|
---|
36 | #endif //ifndef _CONSTRAINTS_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.