From 52be1ef0d126f09ba943c7afcf367e7d9347f2fd Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 8 Nov 2012 22:58:28 +0000 Subject: tabconv: it's all spaces now. --- src/rule.h | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) (limited to 'src/rule.h') diff --git a/src/rule.h b/src/rule.h index d8accf0..5e12a20 100644 --- a/src/rule.h +++ b/src/rule.h @@ -6,49 +6,49 @@ class Rule { - friend Bu::Formatter &operator<<( Bu::Formatter &f, const Rule &t ); + friend Bu::Formatter &operator<<( Bu::Formatter &f, const Rule &t ); public: - Rule( const Bu::String &sName ); - virtual ~Rule(); + Rule( const Bu::String &sName ); + virtual ~Rule(); - const Bu::String &getName() const; + const Bu::String &getName() const; - void setInput( const AstBranch *pNewInput ); - const AstBranch *getInput() const; + void setInput( const AstBranch *pNewInput ); + const AstBranch *getInput() const; - bool hasOutputs() const; + bool hasOutputs() const; - void addOutput( const AstBranch *pNewOutput ); - void addProfile( const AstBranch *pProfile ); + void addOutput( const AstBranch *pNewOutput ); + void addProfile( const AstBranch *pProfile ); - void prepTarget( class Target *pTarget ); - class Target *createTarget( class Runner &r, const Bu::String &sInput, - class Target *pParent ); - bool ruleMatches( class Runner &r, const Bu::String &sInput ); + void prepTarget( class Target *pTarget ); + class Target *createTarget( class Runner &r, const Bu::String &sInput, + class Target *pParent ); + bool ruleMatches( class Runner &r, const Bu::String &sInput ); - void addTag( const Bu::String &sTag ); - const StrList &getTagList() const; + void addTag( const Bu::String &sTag ); + const StrList &getTagList() const; - void setDisplay( const Bu::String &sStr ); - const Bu::String &getDisplay() const; + void setDisplay( const Bu::String &sStr ); + const Bu::String &getDisplay() const; - void addRequires( const AstBranch *pBr ); + void addRequires( const AstBranch *pBr ); private: - Bu::String sName; - Bu::String sDisplay; - const AstBranch *pInput; - AstBranchList lOutput; - ProfileHash hProfiles; - StrList lsTags; - AstBranchList lRequires; + Bu::String sName; + Bu::String sDisplay; + const AstBranch *pInput; + AstBranchList lOutput; + ProfileHash hProfiles; + StrList lsTags; + AstBranchList lRequires; }; Bu::Formatter &operator<<( Bu::Formatter &f, const Rule &t ); namespace Bu { - template<> Bu::Formatter &operator<< ( Bu::Formatter &f, const Rule *t ); + template<> Bu::Formatter &operator<< ( Bu::Formatter &f, const Rule *t ); }; #endif -- cgit v1.2.3