~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to include/lenmus_book_reader.h

  • Committer: cecilios
  • Date: 2012-09-07 17:42:21 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:branches/TRY-5.0:721
initial commit with all changes for 5.1. See changelog

Show diffs side-by-side

added added

removed removed

Lines of Context:
205
205
    bool AddBookPagesToList(const wxFileName& oFilename);
206
206
    bool ProcessIndexFile(const wxFileName& oFilename, BookRecord* pBookr);
207
207
    void ProcessIndexEntries(wxXmlNode* pNode, BookRecord *pBookr);
208
 
    BookRecord* ProcessTOCFile(const wxFileName& oFilename);
209
208
    bool ProcessTOCEntry(wxXmlNode* pNode, BookRecord *pBookr, int nLevel);
210
209
 
211
210
    wxString            m_tempPath;
235
234
    inline const BookIndexArray& GetContentsArray() const { return m_contents; }
236
235
    inline const BookIndexArray& GetIndexArray() const { return m_index; }
237
236
 
 
237
    BookRecord* ProcessTOCFile(const wxFileName& oFilename);
 
238
 
238
239
};
239
240
 
240
241