// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICE_GRID_FILEUSERACCOUNTMAPPERI_H #define ICE_GRID_FILEUSERACCOUNTMAPPERI_H #include namespace IceGrid { class FileUserAccountMapperI : public UserAccountMapper { public: FileUserAccountMapperI(const std::string&); std::string getUserAccount(std::string, const Ice::Current&) override; private: std::map _accounts; }; }; #endif