-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathQClass.java
More file actions
59 lines (44 loc) · 1.14 KB
/
QClass.java
File metadata and controls
59 lines (44 loc) · 1.14 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package qcode;
// Some languages, C for instance, allow global functions, whereas other, Java, do not (really).
// How do we deal with this? Is the global a special case. Or
// can we import globals into our own singular "Global" class
// and forthwith consider them in a module/class.
// It might be nice to mark it as a special case by making it a
// subtype of QClass, rather than a String hack.
// class QGlobal extends QClass {
// String getNameSpace() {
// return "org.neuralyte.qlib.Global";
// }
// }
class QClass implements QIO {
@Override
public String toC() {
// TODO Auto-generated method stub
return null;
}
@Override
public String toCoffee() {
// TODO Auto-generated method stub
return null;
}
@Override
public String toJava() {
// TODO Auto-generated method stub
return null;
}
/*
String getNameSpace() {
}
String getName() {
}
*/
// These will be an interface (or set of) that many things implement!
/*
String toC() {
}
String toJava() {
}
String toCoffee() {
}
*/
}