Browse Source

style (indentation fix)

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/f2f200910@280 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya 15 years ago
parent
commit
aa8ce4a2ed
1 changed files with 10 additions and 10 deletions
  1. 10 10
      src/bin/parkinglot/parkinglot.h

+ 10 - 10
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<std::string,std::string>);
+public:
+    explicit ParkingLot(int port);
+    virtual ~ParkingLot() {};
+    int getSocket() { return(sock); }
+    void processMessage();
+    void command(std::pair<std::string,std::string>);
         
-    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