summaryrefslogtreecommitdiffstats
blob: cb29120832ad4c479c88b28a0c217b985927ecf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2012 Catalin Badea
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

namespace Swift {
	class HistoryWindow {
		public:
			virtual ~HistoryWindow() {};

			virtual void activate() = 0;
	};
}