summaryrefslogtreecommitdiff
path: root/src/OutputImage.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-01-30 21:12:06 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-01-30 21:12:06 +0100
commit45bdcd9dccefee97b56e8792a180ac0000865ea7 (patch)
tree1a391e9f680e7d9d273a344a8e71a10eac9bd25b /src/OutputImage.cxx
parent38d7110da21372f2fe9e68f3690c01ce8704e69b (diff)
inline some dummy methods
Diffstat (limited to 'src/OutputImage.cxx')
-rw-r--r--src/OutputImage.cxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/OutputImage.cxx b/src/OutputImage.cxx
index f981f18..d1c2f43 100644
--- a/src/OutputImage.cxx
+++ b/src/OutputImage.cxx
@@ -15,9 +15,6 @@ OutputImage::OutputImage() {
initialized = 0;
}
-OutputImage::~OutputImage() {
-}
-
int
OutputImage::init(int w1, int h1) {
W = w1;
@@ -28,12 +25,6 @@ OutputImage::init(int w1, int h1) {
return init_internal(w1, h1);
}
-
-int
-OutputImage::init_internal(int w1, int h1) {
- return 0;
-}
-
int
OutputImage::set_pixel(int x, int r, int g, int b) {
if (!initialized || x < 0 || x >= W) {
@@ -44,11 +35,6 @@ OutputImage::set_pixel(int x, int r, int g, int b) {
}
int
-OutputImage::set_pixel_internal(int x, int r, int g, int b) {
- return 0;
-}
-
-int
OutputImage::next_line() {
if (!initialized || line++ >= H) {
return 1;
@@ -58,11 +44,6 @@ OutputImage::next_line() {
}
int
-OutputImage::next_line_internal() {
- return 0;
-}
-
-int
OutputImage::done() {
if (!initialized) {
return 1;
@@ -71,9 +52,3 @@ OutputImage::done() {
return done_internal();
}
}
-
-int
-OutputImage::done_internal() {
- return 0;
-}
-