add a new texture and style class

This commit is contained in:
Dana Jansens 2003-01-18 04:56:30 +00:00
parent 02066c5d0b
commit 23940f9e03
4 changed files with 37 additions and 0 deletions

View file

@ -9,6 +9,7 @@ INCLUDES= -I../src
noinst_LTLIBRARIES=libotk.la
libotk_la_SOURCES=rendercontrol.cc truerendercontrol.cc surface.cc \
rendertexture.cc renderstyle.cc \
color.cc display.cc font.cc gccache.cc image.cc \
property.cc imagecontrol.cc rect.cc screeninfo.cc \
texture.cc timer.cc style.cc \

11
otk/renderstyle.cc Normal file
View file

@ -0,0 +1,11 @@
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifdef HAVE_CONFIG_H
# include "../config.h"
#endif // HAVE_CONFIG_H
#include "renderstyle.hh"
namespace otk {
}

14
otk/renderstyle.hh Normal file
View file

@ -0,0 +1,14 @@
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __renderstyle_hh
#define __renderstyle_hh
namespace otk {
#include "rendertexture.hh"
class RenderStyle {
};
}
#endif // __rendertexture_hh

11
otk/rendertexture.cc Normal file
View file

@ -0,0 +1,11 @@
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifdef HAVE_CONFIG_H
# include "../config.h"
#endif // HAVE_CONFIG_H
#include "rendertexture.hh"
namespace otk {
}