- indent
authorJan Kupec <jkupec@suse.cz>
Wed, 30 Jul 2008 15:36:52 +0000 (15:36 +0000)
committerJan Kupec <jkupec@suse.cz>
Wed, 30 Jul 2008 15:36:52 +0000 (15:36 +0000)
zypp/ServiceInfo.h

index 3ba2040..fb03aa4 100644 (file)
 namespace zypp
 { /////////////////////////////////////////////////////////////////
 
-    ///////////////////////////////////////////////////////////////////
-    //
-    // CLASS NAME : ServiceInfo
-    //
-    /** */
-    class ServiceInfo : public repo::RepoInfoBase
-    {
-    public:
-        /** Default ctor creates \ref noService.*/
-        ServiceInfo();
-
-        /**
-         *  Creates ServiceInfo with specified alias.
-         *
-         * \param alias unique short name of service
-         */
-        ServiceInfo( const std::string & alias );
-
-        /**
-         * ServiceInfo with alias and its URL
-         *
-         * \param alias unique shortname of service
-         * \param url url to service
-         */
-        ServiceInfo( const std::string & alias, const Url& url );
-
-    public:
-        /** Represents an empty service. */
-        static const ServiceInfo noService;
-
-    public:
-
-        /**
-         * Gets url to service
-         *
-         * \return url to service
-         */
-        Url url() const;
-
-    public:
-
-        /**
-         * Sets url for this service
-         *
-         * \param url url to this service
-         */
-        void setUrl( const Url& url );
-
-   public:
-        /**
-         * Writes ServiceInfo to stream in ".service" format
-         *
-         * \param str stream where serialized version service is written
-         */
-        virtual std::ostream & dumpAsIniOn( std::ostream & str ) const;
-
-        class Impl;
-
-    private:
-        RWCOW_pointer<Impl> _pimpl;
-    };
-    ///////////////////////////////////////////////////////////////////
-
-    /** \relates ServiceInfo Stream output */
-    std::ostream & operator<<( std::ostream & str, const ServiceInfo & obj );
-
-    /** \relates ServiceInfo */
-    inline bool operator==( const ServiceInfo & lhs, const ServiceInfo & rhs )
-    { return lhs.alias() == rhs.alias(); }
-
-    /** \relates ServiceInfo */
-    inline bool operator!=( const ServiceInfo & lhs, const ServiceInfo & rhs )
-    { return lhs.alias() != rhs.alias(); }
-
-    /** \relates ServiceInfo */
-    inline bool operator<( const ServiceInfo & lhs, const ServiceInfo & rhs )
-    { return lhs.alias() < rhs.alias(); }
+
+  ///////////////////////////////////////////////////////////////////
+  //
+  //   CLASS NAME : ServiceInfo
+  //
+  /** */
+  class ServiceInfo : public repo::RepoInfoBase
+  {
+  public:
+    /** Default ctor creates \ref noService.*/
+    ServiceInfo();
+
+    /**
+     *  Creates ServiceInfo with specified alias.
+     *
+     * \param alias unique short name of service
+     */
+    ServiceInfo( const std::string & alias );
+
+    /**
+     * ServiceInfo with alias and its URL
+     *
+     * \param alias unique shortname of service
+     * \param url url to service
+     */
+    ServiceInfo( const std::string & alias, const Url& url );
+
+  public:
+    /** Represents an empty service. */
+    static const ServiceInfo noService;
+
+  public:
+
+    /**
+     * Gets url to service
+     *
+     * \return url to service
+     */
+    Url url() const;
+
+  public:
+
+    /**
+     * Sets url for this service
+     *
+     * \param url url to this service
+     */
+    void setUrl( const Url& url );
+
+  public:
+    /**
+     * Writes ServiceInfo to stream in ".service" format
+     *
+     * \param str stream where serialized version service is written
+     */
+    virtual std::ostream & dumpAsIniOn( std::ostream & str ) const;
+
+    class Impl;
+
+  private:
+      RWCOW_pointer<Impl> _pimpl;
+  };
+  ///////////////////////////////////////////////////////////////////
+
+  /** \relates ServiceInfo Stream output */
+  std::ostream & operator<<( std::ostream & str, const ServiceInfo & obj );
+
+  /** \relates ServiceInfo */
+  inline bool operator==( const ServiceInfo & lhs, const ServiceInfo & rhs )
+  { return lhs.alias() == rhs.alias(); }
+
+  /** \relates ServiceInfo */
+  inline bool operator!=( const ServiceInfo & lhs, const ServiceInfo & rhs )
+  { return lhs.alias() != rhs.alias(); }
+
+  /** \relates ServiceInfo */
+  inline bool operator<( const ServiceInfo & lhs, const ServiceInfo & rhs )
+  { return lhs.alias() < rhs.alias(); }
 
     /////////////////////////////////////////////////////////////////
 } // namespace zypp