Changeset 53 in pacpusframework
- Timestamp:
- Jan 9, 2013, 9:39:48 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/DbitePlayer/DbtPlyEngineStateChart.h
r31 r53 24 24 { 25 25 public: 26 /// @todo Documentation 26 27 virtual ~DbtPlyEngineState(); 27 28 29 /// @todo Documentation 28 30 virtual void play(DbtPlyEngine & engine); 31 /// @todo Documentation 29 32 virtual void pause(DbtPlyEngine & engine); 33 /// @todo Documentation 30 34 virtual void stop(DbtPlyEngine & engine); 31 35 36 /// @todo Documentation 32 37 virtual void speedUp(DbtPlyEngine & engine); 38 /// @todo Documentation 33 39 virtual void speedDown(DbtPlyEngine & engine); 34 40 41 /// @todo Documentation 35 42 virtual bool isPlaying(); 36 43 44 /// @todo Documentation 37 45 virtual QString toString() const = 0; 38 46 39 47 protected: 48 /// @todo Documentation 40 49 DbtPlyEngineState(); 41 50 }; … … 46 55 { 47 56 public: 57 /// @todo Documentation 48 58 virtual void pause(DbtPlyEngine & engine); 59 /// @todo Documentation 49 60 virtual void stop(DbtPlyEngine & engine); 50 61 62 /// @todo Documentation 51 63 virtual bool isPlaying(); 52 64 65 /// @todo Documentation 53 66 virtual QString toString() const; 67 /// @todo Documentation 54 68 static DbtPlyEngineState * getInstance(); 55 69 … … 64 78 { 65 79 public: 80 /// @todo Documentation 66 81 virtual void play(DbtPlyEngine & engine); 82 /// @todo Documentation 67 83 virtual void stop(DbtPlyEngine & engine); 68 84 85 /// @todo Documentation 69 86 virtual QString toString() const; 87 /// @todo Documentation 70 88 static DbtPlyEngineState * getInstance(); 71 89 … … 80 98 { 81 99 public: 100 /// @todo Documentation 82 101 virtual void play(DbtPlyEngine & engine); 83 102 103 /// @todo Documentation 84 104 virtual QString toString() const; 105 /// @todo Documentation 85 106 static DbtPlyEngineState * getInstance(); 86 107 -
trunk/include/Pacpus/kernel/XmlConfigFile.h
r31 r53 32 32 33 33 public: 34 /// @todo Documentation 34 35 static XmlConfigFile * create(); 36 /// @todo Documentation 35 37 static void destroy(); 38 /// @todo Documentation 36 39 QDomElement getComponent(QString name); 40 /// @returns a list of all names of components declared in the XML tree 37 41 QStringList getAllComponents(); 42 /// @todo Documentation 38 43 QStringList getAllPlugins(); 44 /// @todo Documentation 39 45 int loadFile(QString fileName); 40 46 41 // not used 47 /// @todo Documentation 48 /// not used 42 49 void saveFile(QString fileName); 43 // not used 50 /// @todo Documentation 51 /// not used 44 52 void addComponent(QDomElement component); 45 // not used 53 /// @todo Documentation 54 /// not used 46 55 void delComponent(QDomElement component); 47 56 -
trunk/src/PacpusLib/XmlConfigFile.cpp
r31 r53 175 175 } 176 176 177 /// @return a list of all names of components declared in the XML tree178 177 QStringList XmlConfigFile::getAllComponents() 179 178 {
Note:
See TracChangeset
for help on using the changeset viewer.