Files
stk-code_catmod/dev/SocketsBase/callback_object.hpp
hilnius 9e990e76e0 untrack files that shouldn't be tracked
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/hilnius@12871 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2013-06-17 20:53:14 +00:00

15 lines
212 B
C++

#ifndef CALLBACK_OBJECT_HPP
#define CALLBACK_OBJECT_HPP
class CallbackObject
{
public:
CallbackObject();
virtual ~CallbackObject();
protected:
};
#endif // CALLBACK_OBJECT_HPP