1 /* 2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #include "FakeAuthenticationManager.h" 7 8 9 AuthenticationManager::AuthenticationManager() 10 { 11 } 12 13 14 AuthenticationManager::~AuthenticationManager() 15 { 16 } 17 18 19 status_t 20 AuthenticationManager::Init() 21 { 22 return B_OK; 23 } 24 25