00001 // BFTPConfigurator.h (this is -*- C++ -*-) 00002 // 00003 // \author: Bjoern Giesler <bjoern@giesler.de> 00004 // 00005 // 00006 // 00007 // $Author: giesler $ 00008 // $Locker$ 00009 // $Revision$ 00010 // $Date: 2002-08-19 10:41:28 +0200 (Mon, 19 Aug 2002) $ 00011 00012 #ifndef BFTPCONFIGURATOR_H 00013 #define BFTPCONFIGURATOR_H 00014 00022 /* system includes */ 00023 #include <string> 00024 00025 /* my includes */ 00026 #include "BFTPServer.h" 00027 00034 class BFTPConfigurator { 00035 public: 00037 BFTPConfigurator(BFTPServer* server); 00045 bool configureFromFile(const std::string& filename); 00046 00047 private: 00048 BFTPServer* server; 00049 }; 00050 00051 #endif /* BFTPCONFIGURATOR_H */