Variables refactor

This commit is contained in:
serso
2016-01-27 17:33:01 +01:00
parent f767f10795
commit 2448f1b387
23 changed files with 324 additions and 383 deletions

View File

@@ -0,0 +1,15 @@
package org.solovyev.android.calculator.variables;
import org.json.JSONException;
import org.json.JSONObject;
import org.solovyev.android.calculator.json.Jsonable;
import javax.annotation.Nonnull;
public class CppVariable implements Jsonable {
@Nonnull
@Override
public JSONObject toJson() throws JSONException {
return null;
}
}