From 23940f9e034af023af610c56e915a6044ea436ec Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 18 Jan 2003 04:56:30 +0000 Subject: [PATCH] add a new texture and style class --- otk/Makefile.am | 1 + otk/renderstyle.cc | 11 +++++++++++ otk/renderstyle.hh | 14 ++++++++++++++ otk/rendertexture.cc | 11 +++++++++++ 4 files changed, 37 insertions(+) create mode 100644 otk/renderstyle.cc create mode 100644 otk/renderstyle.hh create mode 100644 otk/rendertexture.cc diff --git a/otk/Makefile.am b/otk/Makefile.am index ac326598..dd70fa79 100644 --- a/otk/Makefile.am +++ b/otk/Makefile.am @@ -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 \ diff --git a/otk/renderstyle.cc b/otk/renderstyle.cc new file mode 100644 index 00000000..18c5324f --- /dev/null +++ b/otk/renderstyle.cc @@ -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 { + +} diff --git a/otk/renderstyle.hh b/otk/renderstyle.hh new file mode 100644 index 00000000..111149e0 --- /dev/null +++ b/otk/renderstyle.hh @@ -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 diff --git a/otk/rendertexture.cc b/otk/rendertexture.cc new file mode 100644 index 00000000..f6f2108f --- /dev/null +++ b/otk/rendertexture.cc @@ -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 { + +} -- 2.39.2