Patch.h

00001 #ifndef PATCH_H
00002 #define PATCH_H
00003 
00004 #include <string>
00005 
00007 
00011 class Patch
00012 {
00013     std::string name;
00014     bool isEnabled;
00015     bool isPlaying;
00016 public:
00018 
00020     Patch(std::string, bool, bool);
00022 
00024     void setName(std::string);
00025     void setIsEnabled(bool);
00026     void setIsPlaying(bool);
00027     std::string* getName();
00028     bool getIsEnabled();
00029     bool getIsPlaying();
00030 };
00031 
00032 #endif // PATCH_H
 All Classes Functions