Files
eepp/src/window/cclipboard.cpp
spartanj 896be4d28a Big changes here.
Created a backend system for the window-input management. So now it will be a los easier to port to another windows library/platform.
Since this is a big commit, it's probably that some bugs where introduced, but i tested all that i could, and it's working fine.
I'll probably add a cursor manager backend because right now there is no cursor management at all, i removed the CreateCursor function because it was unusable.
2011-02-09 03:30:05 -03:00

16 lines
225 B
C++

#include "cclipboard.hpp"
namespace EE { namespace Window {
cClipboard::cClipboard( cWindow * window ) :
mWindow( window )
{}
cClipboard::~cClipboard() {}
cWindow * cClipboard::GetWindow() const {
return mWindow;
}
}}