-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathname.hh
More file actions
37 lines (21 loc) · 727 Bytes
/
Copy pathname.hh
File metadata and controls
37 lines (21 loc) · 727 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
32
33
34
35
36
37
// Time-stamp: <2016-03-02 12:51:51 dmendyke>
#ifndef __NAME_HH__
#define __NAME_HH__
// required header files
//-----------------------------------------------------------------------------
#include <vector> // std::vector
#include <string> // std::string
// Project namespace
//-----------------------------------------------------------------------------
namespace parsec {
// Wrapper around random names
//---------------------------------------------------------------------------
class name {
public:
static const std::string random();
static void shuffle( );
private:
static std::vector< const char* > vector;
}; // end class name
}; // end project NS
#endif // __NAME_HH__