/** @file PlotSave.java * * @author marco corvi * @date jan 2015 * * @brief TopoDroid drawing: saving modes * -------------------------------------------------------- * Copyright This sowftare is distributed under GPL-3.0 or later * See the file COPYING. * -------------------------------------------------------- */ package com.topodroid.DistoX; class PlotSave { final static int NONE = 0; final static int SAVE = 1; // save as therion/binary (onPause and onBackPressed) final static int EXPORT = 3; // save as therion final static int HANDLER = 2; final static int TOGGLE = 4; final static int MODIFIED = 5; final static int OVERVIEW = 6; };