summaryrefslogtreecommitdiffstats
blob: 18ac86ea42726861cd5997fe9d06604f57baea8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * 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 b) = 0;
			virtual void show() = 0;
			virtual void hide() = 0;
	};
}