~scottydelicious666/brewtarget/brewtarget

« back to all changes in this revision

Viewing changes to instruction.h

  • Committer: Philip Greggory Lee
  • Date: 2009-08-23 16:53:43 UTC
  • Revision ID: git-v1:f8d1a25135bd92f06c46c562293800e4faa42c61
Made a src/ and ui/ directory and moved everything.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * instruction.h is part of Brewtarget, and is Copyright Philip G. Lee
3
 
 * (rocketman768@gmail.com), 2009.
4
 
 *
5
 
 * Brewtarget is free software: you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation, either version 3 of the License, or
8
 
 * (at your option) any later version.
9
 
 
10
 
 * Brewtarget is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 
 */
18
 
 
19
 
#ifndef _INSTRUCTION_H
20
 
#define _INSTRUCTION_H
21
 
 
22
 
// This class is completely outside the BeerXML spec.
23
 
class Instruction;
24
 
 
25
 
#include <QString>
26
 
#include "observable.h"
27
 
#include "xmlnode.h"
28
 
#include <string>
29
 
#include <QDomNode>
30
 
#include "BeerXMLElement.h"
31
 
 
32
 
class Instruction : public Observable, public BeerXMLElement
33
 
{
34
 
public:
35
 
   Instruction();
36
 
   Instruction(const XmlNode* node);
37
 
   Instruction(const QDomNode& instructionNode);
38
 
 
39
 
   virtual void toXml(QDomDocument& doc, QDomNode& parent); // From BeerXMLElement
40
 
   //std::string toXml();
41
 
 
42
 
   // "set" methods.
43
 
   void setName(const QString& n);
44
 
   void setDirections(const QString& dir);
45
 
   void setHasTimer(bool has);
46
 
   void setTimerValue(const QString& timerVal);
47
 
   void setCompleted(bool comp);
48
 
 
49
 
   // "get" methods.
50
 
   QString getName();
51
 
   QString getDirections();
52
 
   bool getHasTimer();
53
 
   QString getTimerValue();
54
 
   bool getCompleted();
55
 
 
56
 
private:
57
 
   void setDefaults();
58
 
 
59
 
   QString name;
60
 
   QString directions;
61
 
   bool hasTimer;
62
 
   QString timerValue; // hh:mm:ss
63
 
   bool completed;
64
 
};
65
 
 
66
 
#endif  /* _INSTRUCTION_H */
67