00001 // Copyright (c) 2003 - 2004 Anselm R. Garbe <anselmg at t-online.de> 00002 // See ../LICENSE.txt for license details. 00003 // 00004 // $Id: prompt.cpp 2 2007-05-16 10:38:27Z eg $ 00005 00006 #include "prompt.h" 00007 00008 #include "binder.h" 00009 00010 Prompt::Prompt(string prompt, QueryNamesForPrefix toQuery) 00011 { 00012 prompt_ = prompt; 00013 toQuery_ = toQuery; 00014 }; 00015 00016 string Prompt::prompt() const { 00017 return prompt_; 00018 } 00019 00020 QueryNamesForPrefix Prompt::toQuery() const { 00021 return toQuery_; 00022 }