IWORKPath_fwd.h
Go to the documentation of this file.
00001 /*
00002  * This file is part of the libetonyek project.
00003  *
00004  * This Source Code Form is subject to the terms of the Mozilla Public
00005  * License, v. 2.0. If a copy of the MPL was not distributed with this
00006  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
00007  */
00008 
00009 #ifndef IWORKPATH_FWD_H_INCLUDED
00010 #define IWORKPATH_FWD_H_INCLUDED
00011 
00012 #include <boost/shared_ptr.hpp>
00013 #include <boost/unordered_map.hpp>
00014 
00015 #include "IWORKTypes_fwd.h"
00016 
00017 namespace libetonyek
00018 {
00019 
00020 class IWORKPath;
00021 
00022 typedef boost::shared_ptr<IWORKPath> IWORKPathPtr_t;
00023 typedef boost::unordered_map<ID_t, IWORKPathPtr_t> IWORKPathMap_t;
00024 
00025 }
00026 
00027 #endif //  IWORKPATH_FWD_H_INCLUDED
00028 
00029 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
00030