aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Browser/ViewContracts/IBrowserView.cs
blob: 8369209a37f8e74eb1c9654d91fb48b6c4a21c4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Common;
using Tango.SharedUI;

namespace Tango.PPC.Browser.ViewContracts
{
    public interface IBrowserView : IPPCView
    {
        event EventHandler<String> AddressChanged;
        bool CanGoBack();
        void NavigateTo(String address);
        void GoBack();
    }
}