From aa8ce4a2ed22c48f94df644ee6ff44bd803ceb52 Mon Sep 17 00:00:00 2001 From: JINMEI Tatuya Date: Sat, 31 Oct 2009 07:02:34 +0000 Subject: [PATCH] style (indentation fix) git-svn-id: svn://bind10.isc.org/svn/bind10/branches/f2f200910@280 e5f2f494-b856-4b98-b285-d166d9295462 --- src/bin/parkinglot/parkinglot.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/bin/parkinglot/parkinglot.h b/src/bin/parkinglot/parkinglot.h index 4970d1f96a..e958135f9b 100644 --- a/src/bin/parkinglot/parkinglot.h +++ b/src/bin/parkinglot/parkinglot.h @@ -20,17 +20,17 @@ #include "zoneset.h" class ParkingLot { - public: - explicit ParkingLot(int port); - virtual ~ParkingLot() {}; - int getSocket() { return(sock); } - void processMessage(); - void command(std::pair); +public: + explicit ParkingLot(int port); + virtual ~ParkingLot() {}; + int getSocket() { return(sock); } + void processMessage(); + void command(std::pair); - private: - isc::dns::Rdata::RdataPtr ns1, ns2, ns3, a, aaaa, soa; - ZoneSet zones; - int sock; +private: + isc::dns::Rdata::RdataPtr ns1, ns2, ns3, a, aaaa, soa; + ZoneSet zones; + int sock; }; #endif // __PARKINGLOT_H