X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Fpattern.h;h=0c90a6cf5983665904350f7592c94746d1bb6836;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=985257308dc7aec730c14b30306e807cc45045e1;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/base/pattern.h b/src/base/pattern.h index 9852573..0c90a6c 100644 --- a/src/base/pattern.h +++ b/src/base/pattern.h @@ -3,26 +3,26 @@ #include "entitycontainer.h" -class RS_PatternList; +class PatternList; /** - * Patterns are used for hatches. They are stored in a RS_PatternList. - * Use RS_PatternList to access a pattern. + * Patterns are used for hatches. They are stored in a PatternList. + * Use PatternList to access a pattern. * * @author Andrew Mustun */ -class RS_Pattern: public RS_EntityContainer +class Pattern: public EntityContainer { public: - RS_Pattern(const QString & fileName); - virtual ~RS_Pattern(); + Pattern(const QString & file); + virtual ~Pattern(); virtual bool loadPattern(); QString getFileName() const; protected: //! Pattern file name - QString fileName; + QString filename; //! Is this pattern currently loaded into memory? bool loaded; };