git repos / blockattack-game

source/code/CppSdl/CppSdlCommon.hpp

browsing at commit = 593aeae41f1a4261c146920b7f43eacd9b4fa9b6

raw · blame · history

/* 
 * File:   CppSdlCommon.hpp
 * Author: poul
 *
 * Created on 7. december 2010, 20:12
 */

#ifndef _CPPSDLCOMMON_HPP
#define	_CPPSDLCOMMON_HPP

namespace CppSdl {
class CppSdlCommon {
public:
    CppSdlCommon* getInstance();
    void setTime(long time);
    long getTime() const;
protected:
    CppSdlCommon();

private:
    static CppSdlCommon *instance;
    long time;
};
}//namespace

#endif	/* _CPPSDLCOMMON_HPP */