1 /* 2 * Copyright 2011, Rene Gollent, rene@gollent.com. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 7 #include "CommandLineUserInterface.h" 8 9 10 CommandLineUserInterface::CommandLineUserInterface() 11 { 12 } 13 14 15 CommandLineUserInterface::~CommandLineUserInterface() 16 { 17 } 18 19 20 const char* 21 CommandLineUserInterface::ID() const 22 { 23 return "BasicCommandLineUserInterface"; 24 } 25 26 27 status_t 28 CommandLineUserInterface::Init(Team* team, UserInterfaceListener* listener) 29 { 30 return B_UNSUPPORTED; 31 } 32 33 34 void 35 CommandLineUserInterface::Show() 36 { 37 } 38 39 40 void 41 CommandLineUserInterface::Terminate() 42 { 43 } 44 45 46 status_t 47 CommandLineUserInterface::LoadSettings(const TeamUISettings* settings) 48 { 49 return B_UNSUPPORTED; 50 } 51 52 53 status_t 54 CommandLineUserInterface::SaveSettings(TeamUISettings*& settings) const 55 { 56 return B_UNSUPPORTED;; 57 } 58 59 60 void 61 CommandLineUserInterface::NotifyUser(const char* title, const char* message, 62 user_notification_type type) 63 { 64 } 65 66 67 int32 68 CommandLineUserInterface::SynchronouslyAskUser(const char* title, 69 const char* message, const char* choice1, const char* choice2, 70 const char* choice3) 71 { 72 return 0; 73 } 74