]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - include/imap.h
Merge remote-tracking branch 'illwieckz/pakpath'
[xonotic/netradiant.git] / include / imap.h
index c97a2ff2a326048f49fa0c5dbbc4b2a8298f8109..7af4c4721335f9bb016b1f2ba2b8b58c9e7ab037 100644 (file)
@@ -1,25 +1,25 @@
 /*
-Copyright (C) 2001-2006, William Joseph.
-All Rights Reserved.
+   Copyright (C) 2001-2006, William Joseph.
+   All Rights Reserved.
 
-This file is part of GtkRadiant.
+   This file is part of GtkRadiant.
 
-GtkRadiant is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
+   GtkRadiant is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
 
-GtkRadiant is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
+   GtkRadiant is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
 
-You should have received a copy of the GNU General Public License
-along with GtkRadiant; if not, write to the Free Software
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-*/
+   You should have received a copy of the GNU General Public License
+   along with GtkRadiant; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
 
-#if !defined(INCLUDED_IMAP_H)
+#if !defined( INCLUDED_IMAP_H )
 #define INCLUDED_IMAP_H
 
 #include "generic/constant.h"
@@ -31,18 +31,18 @@ class TokenWriter;
 class MapImporter
 {
 public:
-  STRING_CONSTANT(Name, "MapImporter");
+STRING_CONSTANT( Name, "MapImporter" );
 
-  virtual bool importTokens(Tokeniser& tokeniser) = 0;
+virtual bool importTokens( Tokeniser& tokeniser ) = 0;
 };
 
 /// \brief A node whose state can be exported to a token stream.
 class MapExporter
 {
 public:
-  STRING_CONSTANT(Name, "MapExporter");
+STRING_CONSTANT( Name, "MapExporter" );
 
-  virtual void exportTokens(TokenWriter& writer) const = 0;
+virtual void exportTokens( TokenWriter& writer ) const = 0;
 };
 
 #include "iscenegraph.h"
@@ -53,20 +53,20 @@ class TextInputStream;
 class TextOutputStream;
 
 
-typedef void(*GraphTraversalFunc)(scene::Node& root, const scene::Traversable::Walker& walker);
+typedef void ( *GraphTraversalFunc )( scene::Node& root, const scene::Traversable::Walker& walker );
 
 /// \brief A module that reads and writes a map in a specific format.
 class MapFormat
 {
 public:
-  INTEGER_CONSTANT(Version, 2);
-  STRING_CONSTANT(Name, "map");
-  mutable bool wrongFormat;
-
-  /// \brief Read a map graph into \p root from \p outputStream, using \p entityTable to create entities.
-  virtual void readGraph(scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable) const = 0;
-  /// \brief Write the map graph obtained by applying \p traverse to \p root into \p outputStream.
-  virtual void writeGraph(scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream) const = 0;
+INTEGER_CONSTANT( Version, 2 );
+STRING_CONSTANT( Name, "map" );
+mutable bool wrongFormat;
+
+/// \brief Read a map graph into \p root from \p outputStream, using \p entityTable to create entities.
+virtual void readGraph( scene::Node& root, TextInputStream& inputStream, EntityCreator& entityTable ) const = 0;
+/// \brief Write the map graph obtained by applying \p traverse to \p root into \p outputStream.
+virtual void writeGraph( scene::Node& root, GraphTraversalFunc traverse, TextOutputStream& outputStream ) const = 0;
 };