aboutsummaryrefslogtreecommitdiffstats
path: root/InterfaceHandler.h
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-06-09 19:22:36 +0800
committerLiana Husikyan <liana@ethdev.com>2015-06-09 19:25:09 +0800
commitf5808185f084c17ea19a85af93fdf80e38d53b73 (patch)
tree6d2cb7017c006e3692b61e8edeb065f82cfe5158 /InterfaceHandler.h
parent13a64777dea5aaf65fc176bfdf839e08ffec0f4d (diff)
downloaddexon-solidity-f5808185f084c17ea19a85af93fdf80e38d53b73.tar.gz
dexon-solidity-f5808185f084c17ea19a85af93fdf80e38d53b73.tar.zst
dexon-solidity-f5808185f084c17ea19a85af93fdf80e38d53b73.zip
style fixes
Diffstat (limited to 'InterfaceHandler.h')
-rw-r--r--InterfaceHandler.h48
1 files changed, 30 insertions, 18 deletions
diff --git a/InterfaceHandler.h b/InterfaceHandler.h
index 40518189..ca9807d7 100644
--- a/InterfaceHandler.h
+++ b/InterfaceHandler.h
@@ -67,8 +67,10 @@ public:
/// types provided by @c DocumentationType
/// @return A unique pointer contained string with the json
/// representation of provided type
- std::unique_ptr<std::string> getDocumentation(ContractDefinition const& _contractDef,
- DocumentationType _type);
+ std::unique_ptr<std::string> getDocumentation(
+ ContractDefinition const& _contractDef,
+ DocumentationType _type
+ );
/// Get the ABI Interface of the contract
/// @param _contractDef The contract definition
/// @return A unique pointer contained string with the json
@@ -90,23 +92,33 @@ private:
void resetUser();
void resetDev();
- std::string::const_iterator parseDocTagLine(std::string::const_iterator _pos,
- std::string::const_iterator _end,
- std::string& _tagString,
- DocTagType _tagType,
- bool _appending);
- std::string::const_iterator parseDocTagParam(std::string::const_iterator _pos,
- std::string::const_iterator _end);
- std::string::const_iterator appendDocTagParam(std::string::const_iterator _pos,
- std::string::const_iterator _end);
+ std::string::const_iterator parseDocTagLine(
+ std::string::const_iterator _pos,
+ std::string::const_iterator _end,
+ std::string& _tagString,
+ DocTagType _tagType,
+ bool _appending
+ );
+ std::string::const_iterator parseDocTagParam(
+ std::string::const_iterator _pos,
+ std::string::const_iterator _end
+ );
+ std::string::const_iterator appendDocTagParam(
+ std::string::const_iterator _pos,
+ std::string::const_iterator _end
+ );
void parseDocString(std::string const& _string, CommentOwner _owner);
- std::string::const_iterator appendDocTag(std::string::const_iterator _pos,
- std::string::const_iterator _end,
- CommentOwner _owner);
- std::string::const_iterator parseDocTag(std::string::const_iterator _pos,
- std::string::const_iterator _end,
- std::string const& _tag,
- CommentOwner _owner);
+ std::string::const_iterator appendDocTag(
+ std::string::const_iterator _pos,
+ std::string::const_iterator _end,
+ CommentOwner _owner
+ );
+ std::string::const_iterator parseDocTag(
+ std::string::const_iterator _pos,
+ std::string::const_iterator _end,
+ std::string const& _tag,
+ CommentOwner _owner
+ );
// internal state
DocTagType m_lastTag;