~ubuntu-branches/ubuntu/karmic/photoprint/karmic

« back to all changes in this revision

Viewing changes to printoutput.h

  • Committer: Bazaar Package Importer
  • Author(s): Milan Zamazal
  • Date: 2007-05-01 16:32:13 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070501163213-ni1933khtg9fdvn5
Tags: 0.3.5-2
Move to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef PRINTOUTPUT_H
2
 
#define PRINTOUTPUT_H
3
 
 
4
 
#include "support/configdb.h"
5
 
#include "support/consumer.h"
6
 
#include "printerqueueswrapper.h"
7
 
 
8
 
#define DEFAULT_PRINTER_DRIVER "escp2-600"
9
 
 
10
 
class PrintOutput : public ConfigDB, public PrinterQueues
11
 
{
12
 
        public:
13
 
        PrintOutput(ConfigFile *inif,char *section);
14
 
        Consumer *GetConsumer();
15
 
        private:
16
 
        static ConfigTemplate Template[];
17
 
        char *str2;
18
 
};
19
 
 
20
 
#endif
 
1
#ifndef PRINTOUTPUT_H
 
2
#define PRINTOUTPUT_H
 
3
 
 
4
#include "support/configdb.h"
 
5
#include "support/consumer.h"
 
6
#include "printerqueueswrapper.h"
 
7
 
 
8
#define DEFAULT_PRINTER_DRIVER "escp2-600"
 
9
 
 
10
class PrintOutput : public ConfigDB, public PrinterQueues
 
11
{
 
12
        public:
 
13
        PrintOutput(ConfigFile *inif,char *section);
 
14
        Consumer *GetConsumer();
 
15
        void DBToQueues();
 
16
        void QueuesToDB();
 
17
        private:
 
18
        static ConfigTemplate Template[];
 
19
        char *str2;
 
20
};
 
21
 
 
22
#endif