diff options
Diffstat (limited to '')
-rw-r--r-- | src/profile.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/profile.h b/src/profile.h index 4f89306..8490121 100644 --- a/src/profile.h +++ b/src/profile.h | |||
@@ -6,25 +6,25 @@ | |||
6 | class Profile | 6 | class Profile |
7 | { | 7 | { |
8 | public: | 8 | public: |
9 | Profile( const class AstBranch *pRoot ); | 9 | Profile( const class AstBranch *pRoot ); |
10 | Profile( const Profile &rSrc ); | 10 | Profile( const Profile &rSrc ); |
11 | virtual ~Profile(); | 11 | virtual ~Profile(); |
12 | 12 | ||
13 | const Bu::String &getName() const; | 13 | const Bu::String &getName() const; |
14 | const class AstBranch *getRoot() const; | 14 | const class AstBranch *getRoot() const; |
15 | const class Condition *getCond() const; | 15 | const class Condition *getCond() const; |
16 | bool shouldExec( class Runner &r, class Target &rTarget ) const; | 16 | bool shouldExec( class Runner &r, class Target &rTarget ) const; |
17 | 17 | ||
18 | static Profile *genDefaultClean(); | 18 | static Profile *genDefaultClean(); |
19 | 19 | ||
20 | private: | 20 | private: |
21 | void setCondition(); | 21 | void setCondition(); |
22 | 22 | ||
23 | private: | 23 | private: |
24 | Bu::String sName; | 24 | Bu::String sName; |
25 | const class AstBranch *pRoot; | 25 | const class AstBranch *pRoot; |
26 | class Condition *pCond; | 26 | class Condition *pCond; |
27 | class Ast *pAst; | 27 | class Ast *pAst; |
28 | }; | 28 | }; |
29 | 29 | ||
30 | #endif | 30 | #endif |