#include <vector>#include <string>#include <map>#include "smiltime.h"#include <libxml/xmlmemory.h>#include <libxml/parser.h>#include <time.h>Include dependency graph for playlist.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| EditorBackup * | GetEditorBackup () |
| The singleton method for obtaining the instance of the EditorBackup. | |
| FileMap * | GetFileMap () |
| The singleton method for obtain the instance of the file map. | |
|
|
The singleton method for obtaining the instance of the EditorBackup.
Definition at line 2561 of file playlist.cc. References backup. Referenced by bulkLoad(), PageEditor::DeleteFrames(), PageTrim::insertScene(), KinoCommon::loadFile(), KinoCommon::loadPlayList(), KinoCommon::newFile(), PageEditor::PasteFrames(), PageEditor::processCommand(), PageTrim::processCommand(), PlayList::SavePlayList(), PageTrim::saveScene(), PageEditor::snapshot(), and PageCapture::stopCapture(). 02562 {
02563 static EditorBackup * backup = new EditorBackup( );
02564 return backup;
02565 }
|
|
|
The singleton method for obtain the instance of the file map.
Definition at line 104 of file playlist.cc. Referenced by PlayList::AutoSplit(), convertFramesToSmilTime(), convertSmilTimeToFrames(), fillMap(), PlayList::GetFrame(), PlayList::GetMediaObject(), PageTrim::insertScene(), PlayList::LoadMediaObject(), KinoCommon::newFile(), SrtContext::printEntry(), PageTrim::saveScene(), PageTrim::start(), and KinoCommon::~KinoCommon(). 00105 {
00106 static FileMap * thismap = new KinoFileMap( );
00107 return thismap;
00108 }
|
1.4.2