#ifndef _LOADERIPL_HPP_ #define _LOADERIPL_HPP_ #include #include #include #include #include /** \class LoaderIPL \brief Loads all data from a IPL file into memory */ class LoaderIPL { public: /// Load the IPL data into memory bool load(const std::string& filename); /// The list of instances from the IPL file std::vector> m_instances; /// List of Zones std::vector zones; }; #endif // LoaderIPL_h__