Removed trailing whitespace from all *.?pp files
[supertux.git] / src / addon / addon.hpp
index 033b14f..69b0bd9 100644 (file)
@@ -33,9 +33,12 @@ public:
   std::string author;
   std::string license;
   std::string http_url;
-  std::string suggested_filename; /**< filename suggested by addon author, e.g. "pak0.zip" */
-  std::string installed_physfs_filename; /**< PhysFS filename on disk, e.g. "pak0.zip" */
-  std::string installed_absolute_filename; /**< complete path and filename on disk, e.g. "/home/sommer/.supertux2/pak0.zip" */
+  /** filename suggested by addon author, e.g. "pak0.zip" */
+  std::string suggested_filename;
+  /** PhysFS filename on disk, e.g. "pak0.zip" */
+  std::string installed_physfs_filename;
+  /** complete path and filename on disk, e.g. "/home/sommer/.supertux2/pak0.zip" */
+  std::string installed_absolute_filename;
   std::string stored_md5;
   bool installed;
   bool loaded;
@@ -58,7 +61,7 @@ public:
   /**
    * Writes out Add-on metainformation to a Lisp Writer
    */
-  void write(lisp::Writer& writer) const;
+  void write(Writer& writer) const;
 
   /**
    * Writes out Add-on metainformation to a file
@@ -66,7 +69,7 @@ public:
   void write(std::string fname) const;
 
   /**
-   * Checks if Add-on is the same as given one. 
+   * Checks if Add-on is the same as given one.
    * If available, checks MD5 sum, else relies on kind, author and title alone.
    */
   bool operator==(Addon addon2) const;
@@ -82,8 +85,8 @@ protected:
     author(),
     license(),
     http_url(),
-    suggested_filename(), 
-    installed_physfs_filename(), 
+    suggested_filename(),
+    installed_physfs_filename(),
     installed_absolute_filename(),
     stored_md5(),
     installed(),