Don't add underscore prefix to amd64 symbols
[reactos.git] / reactos / tools / rbuild / backend / backend.h
index 3219e79..7e9da13 100644 (file)
@@ -1,40 +1,77 @@
-#ifndef __BACKEND_H\r
-#define __BACKEND_H\r
-\r
-#include "../rbuild.h"\r
-\r
-class Backend;\r
-\r
-typedef Backend* BackendFactory ( Project& project );\r
-\r
-class Backend\r
-{\r
-public:\r
-       class Factory\r
-       {\r
-               static std::vector<Factory*>* factories;\r
-               std::string name;\r
-\r
-       protected:\r
-\r
-               Factory ( const std::string& name_ );\r
-\r
-               virtual Backend* operator() ( Project& ) = 0;\r
-\r
-       public:\r
-               static Backend* Create ( const std::string& name, Project& project );\r
-\r
-       private:\r
-       };\r
-\r
-protected:\r
-       Backend ( Project& project );\r
-\r
-public:\r
-       virtual void Process () = 0;\r
-\r
-protected:\r
-       Project& ProjectNode;\r
-};\r
-\r
-#endif /* __BACKEND_H */\r
+/*
+ * Copyright (C) 2005 Casper S. Hornstrup
+ *
+ * This program 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.
+ *
+ * This program 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 this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#pragma once
+
+#include "../rbuild.h"
+
+class Backend;
+
+typedef Backend* BackendFactory ( Project& project,
+                                  Configuration& configuration );
+
+class Backend
+{
+public:
+       class Factory
+       {
+               static std::map<std::string,Factory*>* factories;
+               static int ref;
+               std::string m_name;
+               std::string m_description;
+
+       protected:
+
+               Factory ( const std::string& name_, const std::string& description_ );
+               virtual ~Factory();
+
+               virtual Backend* operator() ( Project&,
+                                             Configuration& configuration ) = 0;
+
+       public:
+               static Backend* Create ( const std::string& name,
+                                        Project& project,
+                                        Configuration& configuration );
+
+               static std::map<std::string,Factory*>::iterator map_begin(void)
+               {
+                       return factories->begin();
+               }
+
+               static std::map<std::string,Factory*>::iterator map_end(void)
+               {
+                       return factories->end();
+               }
+
+               const char *Name(void) { return m_name.c_str(); }
+               const char *Description(void) { return m_description.c_str(); }
+       };
+
+protected:
+       Backend ( Project& project,
+                 Configuration& configuration );
+
+public:
+       virtual ~Backend();
+
+       virtual std::string GetFullName ( const FileLocation& file ) const;
+       virtual std::string GetFullPath ( const FileLocation& file ) const;
+       virtual void Process () = 0;
+       Project& ProjectNode;
+       Configuration& configuration;
+};