aboutsummaryrefslogtreecommitdiff
path: root/src/profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/profile.h')
-rw-r--r--src/profile.h26
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 @@
6class Profile 6class Profile
7{ 7{
8public: 8public:
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
20private: 20private:
21 void setCondition(); 21 void setCondition();
22 22
23private: 23private:
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