From b8204a830cf786ae3d1cd91bcc98da487ebd8b55 Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Sat, 5 Dec 2009 13:00:00 +0000 Subject: [PATCH] Get rid of useless source file --- include/gui/RenderBuffer.hpp | 43 ------------------------------------ 1 file changed, 43 deletions(-) delete mode 100644 include/gui/RenderBuffer.hpp diff --git a/include/gui/RenderBuffer.hpp b/include/gui/RenderBuffer.hpp deleted file mode 100644 index e05cd51..0000000 --- a/include/gui/RenderBuffer.hpp +++ /dev/null @@ -1,43 +0,0 @@ -// -// Copyright (C) 2009 Nick Gasson -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . -// - -#ifndef INC_GUI_RENDERBUFFER_HPP -#define INC_GUI_RENDERBUFFER_HPP - -// Internal header: do not include this file directly - -#include "Platform.hpp" - -#include - -namespace gui { - - class Window : public ContainerWidget { - public: - Window(const AttributeSet& attrs); - - const string& title() const { return title_; } - void title(const string& t) { title_ = t; } - - void render() const; - private: - string title_; - }; - -} - -#endif -- 2.39.2