-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdim.h
More file actions
29 lines (23 loc) · 649 Bytes
/
dim.h
File metadata and controls
29 lines (23 loc) · 649 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
#ifndef INCLUDE_BLASSIC_DIM_H
#define INCLUDE_BLASSIC_DIM_H
// dim.h
// Revision 6-jul-2004
#include <iostream>
#include <cstddef>
#include <vector>
class Dimension {
public:
void add (size_t n) { dim.push_back (n); }
size_t size () const { return dim.size (); }
bool empty () const { return dim.empty (); }
size_t elements () const;
size_t operator [] (size_t n) const { return dim [n]; }
size_t evalpos (const Dimension & d) const;
bool operator == (const Dimension & d) const
{ return dim == d.dim; }
private:
std::vector <size_t> dim;
};
std::ostream & operator << (std::ostream & os, const Dimension & d);
#endif
// Fin de dim.h