summaryrefslogtreecommitdiffstats
blob: b5d8a694669aa2b5eb20f0a81be56c7cef972583 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2011 Vlad Voicu
 * Licensed under the Simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

#include <Swiften/Base/boost_bsignals.h>

namespace Swift {
	class ViewHistoryWindow {
		public:
			virtual ~ViewHistoryWindow() {};
			virtual void setEnabled(bool enabled) = 0;
			virtual void show() = 0;
	};
}