[Marble-commits] KDE/kdeedu/marble/src/lib/geodata/parser
Jens-Michael Hoffmann
jensmh at gmx.de
Fri Aug 14 01:22:56 CEST 2009
SVN commit 1011106 by jmhoffmann:
Coding style: opening braces of classes should be on their own line.
M +2 -1 GeoDataParser.h
M +4 -2 GeoDocument.h
M +2 -1 GeoOnfParser.h
M +2 -1 GeoSceneParser.h
M +4 -2 GeoTagHandler.h
--- trunk/KDE/kdeedu/marble/src/lib/geodata/parser/GeoDataParser.h #1011105:1011106
@@ -38,7 +38,8 @@
GeoData_OSM = 3
};
-class GEODATA_EXPORT GeoDataParser : public GeoParser {
+class GEODATA_EXPORT GeoDataParser : public GeoParser
+{
public:
explicit GeoDataParser(GeoDataSourceType source);
virtual ~GeoDataParser();
--- trunk/KDE/kdeedu/marble/src/lib/geodata/parser/GeoDocument.h #1011105:1011106
@@ -75,7 +75,8 @@
/**
* @short A shared base class between GeoDataDocument/GeoSourceDocument
*/
-class GEODATA_EXPORT GeoDocument {
+class GEODATA_EXPORT GeoDocument
+{
protected:
GeoDocument();
@@ -92,7 +93,8 @@
/**
* @short A shared base class for all classes that are mapped to a specifig tag (ie. GeoFolder)
*/
-class GEODATA_EXPORT GeoNode {
+class GEODATA_EXPORT GeoNode
+{
protected:
GeoNode();
virtual ~GeoNode();
--- trunk/KDE/kdeedu/marble/src/lib/geodata/parser/GeoOnfParser.h #1011105:1011106
@@ -29,7 +29,8 @@
class GeoDocument;
-class GEODATA_EXPORT GeoOnfParser : public GeoParser {
+class GEODATA_EXPORT GeoOnfParser : public GeoParser
+{
public:
GeoOnfParser();
--- trunk/KDE/kdeedu/marble/src/lib/geodata/parser/GeoSceneParser.h #1011105:1011106
@@ -35,7 +35,8 @@
GeoScene_DGML = 0
};
-class GEODATA_EXPORT GeoSceneParser : public GeoParser {
+class GEODATA_EXPORT GeoSceneParser : public GeoParser
+{
public:
explicit GeoSceneParser(GeoSceneSourceType source);
virtual ~GeoSceneParser();
--- trunk/KDE/kdeedu/marble/src/lib/geodata/parser/GeoTagHandler.h #1011105:1011106
@@ -39,7 +39,8 @@
* implemented GeoTagHandler by declaring an instance of the helper structure
* @see GeoTagHandlerRegistrar with a corrisponding @see QualifiedName.
*/
-class MARBLE_EXPORT GeoTagHandler {
+class MARBLE_EXPORT GeoTagHandler
+{
public:
// API to be implemented by child handlers.
virtual GeoNode* parse(GeoParser&) const = 0;
@@ -70,7 +71,8 @@
};
// Helper structure
-struct GeoTagHandlerRegistrar {
+struct GeoTagHandlerRegistrar
+{
public:
GeoTagHandlerRegistrar(const GeoTagHandler::QualifiedName& name, const GeoTagHandler* handler)
{
More information about the Marble-commits
mailing list