xref: /haiku/src/apps/haikudepot/model/DecisionProvider.cpp (revision ed24eb5ff12640d052171c6a7feba37fab8a75d1)
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