- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwrapper.cpp
More file actions
Latest commit
26 lines (20 loc) · 430 Bytes
/
Copy pathwrapper.cpp
File metadata and controls
26 lines (20 loc) · 430 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
#include"wrapper.h"
#include"vendor/proj/proj.h"
Configuration * newConfig() {
returnnew Configuration;
}
voidsetInherited(Configuration *c) {
c->set_inherited();
}
voidprintInherited(Configuration *c) {
c->print_inherited();
}
voidsetComposed(Configuration *c) {
c->set_composed();
}
voidprintComposed(Configuration *c) {
c->print_composed();
}
voiddelConfig(Configuration *c) {
delete c;
}