Various changes.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6368 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Pfeiffer
2004-01-27 21:22:16 +00:00
parent 393fb10d6e
commit 9198afa23d
6 changed files with 74 additions and 8 deletions
+8 -1
View File
@@ -63,6 +63,12 @@ struct BindingLocationCap : public BaseCap {
: BaseCap(n, d), binding_location(b) {}
};
struct ColorCap : public BaseCap {
JobData::COLOR color;
ColorCap(const string &n, bool d, JobData::COLOR c)
: BaseCap(n, d), color(c) {}
};
class PrinterData;
class PrinterCap {
@@ -79,7 +85,8 @@ public:
RESOLUTION,
ORIENTATION,
PRINTSTYLE,
BINDINGLOCATION
BINDINGLOCATION,
COLOR
};
virtual int countCap(CAPID) const = 0;