summaryrefslogtreecommitdiff
path: root/libcaribou/iscannable-item.vala
blob: 725ad7dc919313ad2a90981b7b3275cec9c38405 (plain)
1
2
3
4
5
6
7
8
9
namespace Caribou {
    /**
     * Interface implemented by items that can be selected in scanning mode.
     */
    public interface IScannableItem : Object {
        public abstract bool scan_stepping { get; set; }
        public abstract bool scan_selected { get; set; }
    }
}