// // 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&); virtual std::string getUserAccount(const std::string&, const Ice::Current&); private: std::map _accounts; }; }; #endif