aboutsummaryrefslogtreecommitdiff
path: root/src/profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/profile.h')
-rw-r--r--src/profile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/profile.h b/src/profile.h
index dbcc1ea..4f89306 100644
--- a/src/profile.h
+++ b/src/profile.h
@@ -1,7 +1,7 @@
1#ifndef PROFILE_H 1#ifndef PROFILE_H
2#define PROFILE_H 2#define PROFILE_H
3 3
4#include <bu/fstring.h> 4#include <bu/string.h>
5 5
6class Profile 6class Profile
7{ 7{
@@ -10,7 +10,7 @@ public:
10 Profile( const Profile &rSrc ); 10 Profile( const Profile &rSrc );
11 virtual ~Profile(); 11 virtual ~Profile();
12 12
13 const Bu::FString &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;
@@ -21,7 +21,7 @@ private:
21 void setCondition(); 21 void setCondition();
22 22
23private: 23private:
24 Bu::FString 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;