xref: /haiku/src/apps/haikudepot/model/DecisionProvider.cpp (revision ca8ed5ea660fb6275799a3b7f138b201c41a667b)
1 /*
2  * Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de>
3  * Copyright 2013, Rene Gollent, rene@gollent.com.
4  * Distributed under the terms of the MIT License.
5  */
6 
7 
8 #include "DecisionProvider.h"
9 
10 
11 bool
12 DecisionProvider::YesNoDecisionNeeded(const BString& description,
13 	const BString& question, const BString& yes, const BString& no,
14 	const BString& defaultChoice)
15 {
16 	// TODO: implement
17 
18 	return true;
19 }
20