coding style formatting

This commit is contained in:
Evgeny
2017-11-29 13:53:12 -06:00
parent 841616f595
commit cb3a591826
31 changed files with 734 additions and 702 deletions
+3 -1
View File
@@ -37,7 +37,9 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
class TestAql {
public:
explicit TestAql(TestAql* t = 0) : test_(t) {}
virtual ~TestAql() { if (test_) delete test_; }
virtual ~TestAql() {
if (test_) delete test_;
}
TestAql* Test() { return test_; }
virtual AgentInfo* GetAgentInfo() { return (test_) ? test_->GetAgentInfo() : 0; }