diff options
author | Michele Calgaro <[email protected]> | 2024-10-13 11:56:14 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-21 09:29:11 +0900 |
commit | 0c8ed6c9a4000af8f48581a81c4b5c2f5b9fd502 (patch) | |
tree | 10f9d3223f0a0904a0748a28ca44da52ee1092b7 /src/importers/recipemlimporter.h | |
parent | 7d5ba3180a82a0827c1fbd6dc93a2abf4f882c37 (diff) | |
download | krecipes-0c8ed6c9a4000af8f48581a81c4b5c2f5b9fd502.tar.gz krecipes-0c8ed6c9a4000af8f48581a81c4b5c2f5b9fd502.zip |
Rearrange folders structure to remove unnecessary 'krecipes' second level subfolder
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/importers/recipemlimporter.h')
-rw-r--r-- | src/importers/recipemlimporter.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/importers/recipemlimporter.h b/src/importers/recipemlimporter.h new file mode 100644 index 0000000..51c6f42 --- /dev/null +++ b/src/importers/recipemlimporter.h @@ -0,0 +1,53 @@ +/*************************************************************************** +* Copyright (C) 2003 by * +* Richard L�rk�ng * +* * +* Copyright (C) 2003-2005 by * +* Jason Kivlighn ([email protected]) * +* * +* 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. * +***************************************************************************/ + + +#ifndef RECIPEMLIMPORTER_H +#define RECIPEMLIMPORTER_H + +#include "baseimporter.h" +#include "datablocks/ingredient.h" +#include "datablocks/recipe.h" + +#include <tqdom.h> + +/** Class to import the RecipeML, XML-based file format. + * More info at http://www.formatdata.com/recipeml + * + * @author Jason Kivlighn + */ +class RecipeMLImporter : public BaseImporter +{ +public: + RecipeMLImporter(); + virtual ~RecipeMLImporter(); + +protected: + void parseFile( const TQString& filename ); + +private: + void readRecipemlDirections( const TQDomElement& dirs ); + void readRecipemlHead( const TQDomElement& head ); + void readRecipemlIng( const TQDomElement& ing1, Ingredient *ing2 = 0, const TQString &header = TQString::null ); + void readRecipemlIngs( const TQDomElement& ings ); + void readRecipemlMenu( const TQDomElement& menu ); + void readRecipemlSrcItems( const TQDomElement& sources ); + void readRecipemlRecipe( const TQDomElement& recipe ); + void readRecipemlPreptime( const TQDomElement &preptime ); + void readRecipemlTQty( const TQDomElement &qty, Ingredient &ing ); + void readRecipemlRange( const TQDomElement& range1, double &range2, double &range_offset ); + + Recipe recipe; +}; + +#endif //RECIPEMLIMPORTER_H |