summaryrefslogtreecommitdiffstats
path: root/krecipes/src/exporters/plaintextexporter.h
blob: 1f4a72780082a5169cc69e5c2ff3b11cc67bb078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/***************************************************************************
*   Copyright (C) 2005 by                                                 *
*   Jason Kivlighn (jkivlighn@gmail.com)                                  *
*                                                                         *
*   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 PLAINTEXTEXPORTER_H
#define PLAINTEXTEXPORTER_H

#include "baseexporter.h"

#include "datablocks/mixednumber.h"

class IngredientData;

/**
  * Export class to export recipes into text format.
  * Recipes exported with this class are not meant to be imported back
  * into Krecipes or any other program.
  *
  * @author Jason Kivlighn
  */
class PlainTextExporter : public BaseExporter
{
public:
	PlainTextExporter( const TQString&, const TQString& );
	virtual ~PlainTextExporter();

	virtual int supportedItems() const;

protected:
	virtual TQString createContent( const RecipeList & );

private:
	TQString generateIngredient( const IngredientData &ing, MixedNumber::Format number_format );
};

#endif //PLAINTEXTEXPORTER_H