aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/cycling74/max/MaxContext.java
blob: e5fae1262df7bd4fcc383954fba28e82df6ba65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

package com.cycling74.max;

import java.util.Set;

/**
 * MaxContext holder. Does not do anything usefull on pdj, yet.
 */
public class MaxContext {
	public Set getAllObject() {
		return null;
	}
	
	MaxObject getMaxObject(String name) {
		return null;
	}
	
	String getMxjVersion() {
		return MaxSystem.MXJ_VERSION;
	}
}