-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathnames.h
More file actions
43 lines (35 loc) · 848 Bytes
/
names.h
File metadata and controls
43 lines (35 loc) · 848 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
38
39
40
41
42
/**
* Names.h
*
* One central place in which we define the classnames
*
* @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
* @copyright 2025 Copernica BV
*/
/**
* Include guard
*/
#pragma once
/**
* Begin of namespace
*/
namespace JS {
/**
* All classnames
*/
struct Names {
// class names
inline static const char *Script = "JS\\Script";
inline static const char *Object = "JS\\Object";
inline static const char *Context = "JS\\Context";
inline static const char *Function = "JS\\Function";
// constants
inline static const char *None = "JS\\None";
inline static const char *ReadOnly = "JS\\ReadOnly";
inline static const char *DontDelete = "JS\\DontDelete";
inline static const char *DontEnumerate = "JS\\DontEnumerate";
};
/**
* End of namespace
*/
}