summaryrefslogtreecommitdiffstats
path: root/sigmod/Sound.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
commit0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch)
treea2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigmod/Sound.h
parentb81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff)
downloadsigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.gz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.xz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.zip
[FIX] Renamed everything (in use) away from Poké- prefixes
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigmod/Sound.h')
-rw-r--r--sigmod/Sound.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/sigmod/Sound.h b/sigmod/Sound.h
index 0f4033ce..789718b3 100644
--- a/sigmod/Sound.h
+++ b/sigmod/Sound.h
@@ -15,22 +15,22 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKEMOD_SOUND__
-#define __POKEMOD_SOUND__
+#ifndef __SIGMOD_SOUND__
+#define __SIGMOD_SOUND__
-// Pokemod includes
+// Sigmod includes
#include "Object.h"
// Qt includes
#include <QtCore/QByteArray>
#include <QtCore/QString>
-namespace Pokemod
+namespace Sigmod
{
// Forward declarations
-class Pokemod;
+class Sigmod;
-class POKEMOD_EXPORT Sound : public Object
+class SIGMOD_EXPORT Sound : public Object
{
Q_OBJECT
Q_ENUMS(Type)
@@ -44,9 +44,9 @@ class POKEMOD_EXPORT Sound : public Object
static const QStringList TypeStr;
Sound(const Sound& sound);
- Sound(const Pokemod* parent, const int id);
- Sound(const Sound& sound, const Pokemod* parent, const int id);
- Sound(const QDomElement& xml, const Pokemod* parent, const int id = -1);
+ Sound(const Sigmod* parent, const int id);
+ Sound(const Sound& sound, const Sigmod* parent, const int id);
+ Sound(const QDomElement& xml, const Sigmod* parent, const int id = -1);
void validate();
@@ -68,6 +68,6 @@ class POKEMOD_EXPORT Sound : public Object
QByteArray m_data;
};
}
-Q_DECLARE_METATYPE(Pokemod::Sound::Type)
+Q_DECLARE_METATYPE(Sigmod::Sound::Type)
#endif