Home | History | Annotate | Download | only in common

Lines Matching refs:Archive

30 // \todo [2010-07-31 pyry] Move Archive and File* to separate files
42 * Resource objects are requested from Archive object provided by Platform.
65 * \brief Abstract resource archive
67 class Archive
70 virtual ~Archive (void) {}
85 Archive () {}
89 * \brief Directory-based archive implementation
91 class DirArchive : public Archive
100 DirArchive (const DirArchive& other) : Archive(), m_path(other.m_path) {}
126 class ResourcePrefix : public Archive
129 ResourcePrefix (const Archive& archive, const char* prefix);
135 const Archive& m_archive;