Member variable documentation consistency

This commit is contained in:
Dmitry Marakasov 2014-12-26 22:02:40 +03:00
parent 8caddb4b39
commit 00d57f8867
3 changed files with 3 additions and 3 deletions

View File

@ -144,7 +144,7 @@ public:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
class RWops { class RWops {
protected: protected:
SDL_RWops* rwops_; SDL_RWops* rwops_; ///< Contained SDL_RWops structure
private: private:
static Sint64 StdSeekFuncWrapper(SDL_RWops* context, Sint64 offset, int whence); static Sint64 StdSeekFuncWrapper(SDL_RWops* context, Sint64 offset, int whence);

View File

@ -48,7 +48,7 @@ class Point;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
class Renderer { class Renderer {
private: private:
SDL_Renderer* renderer_; ///< Contained SDL_Renderer object SDL_Renderer* renderer_; ///< Contained SDL_Renderer structure
public: public:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////

View File

@ -61,7 +61,7 @@ namespace SDL2pp {
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
class Window { class Window {
private: private:
SDL_Window* window_; ///< SDL2 window pointer SDL_Window* window_; ///< Contained SDL2_Window structure
public: public:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////