added ISurface interface

This commit is contained in:
Jack Andersen 2015-04-18 11:57:44 -10:00
parent 0fa62e310a
commit 454891b4e5
3 changed files with 13 additions and 1 deletions

View File

@ -2,6 +2,7 @@
#define CCGLCONTEXT_HPP #define CCGLCONTEXT_HPP
#include "IContext.hpp" #include "IContext.hpp"
#include <OpenGL/OpenGL.h>
class CCGLContext final : public IContext class CCGLContext final : public IContext
{ {

9
include/ISurface.hpp Normal file
View File

@ -0,0 +1,9 @@
#ifndef ISURFACE_HPP
#define ISURFACE_HPP
class ISurface
{
};
#endif // CSURFACE_HPP

View File

@ -1,6 +1,8 @@
HEADERS += \ HEADERS += \
$$PWD/include/boo.hpp \ $$PWD/include/boo.hpp \
$$PWD/include/IContext.hpp $$PWD/include/IContext.hpp \
$$PWD/include/CCGLContext.hpp \
$$PWD/include/ISurface.hpp
SOURCES += \ SOURCES += \
$$PWD/src/CCGLContext.cpp $$PWD/src/CCGLContext.cpp