Files
kraken/KREngine/KREngine/Classes/KRContextObject.h
kearwood fc45c06281 Added getContext method to KRContextObject
--HG--
extra : convert_revision : svn%3A7752d6cf-9f14-4ad2-affc-04f1e67b81a5/trunk%4075
2012-08-23 17:32:38 +00:00

26 lines
407 B
C++

//
// KRContextObject.h
// KREngine
//
// Created by Kearwood Gilbert on 2012-08-16.
// Copyright (c) 2012 Kearwood Software. All rights reserved.
//
#ifndef KRCONTEXTOBJECT_H
#define KRCONTEXTOBJECT_H
class KRContext;
class KRContextObject {
public:
KRContextObject(KRContext &context);
~KRContextObject();
KRContext &getContext();
protected:
KRContext *m_pContext;
};
#endif