Removed some privates files from the documentation

Added sf::Event::EventType::Count

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1200 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2009-08-14 07:31:01 +00:00
parent 6be8b01a2d
commit 3cfbc8409b
2 changed files with 1553 additions and 1554 deletions

3
doc/build/Doxyfile vendored
View file

@ -604,7 +604,6 @@ FILE_PATTERNS = *.c \
*.ipp \ *.ipp \
*.i++ \ *.i++ \
*.inl \ *.inl \
*.h \
*.hh \ *.hh \
*.hxx \ *.hxx \
*.hpp \ *.hpp \
@ -615,8 +614,6 @@ FILE_PATTERNS = *.c \
*.php \ *.php \
*.php3 \ *.php3 \
*.inc \ *.inc \
*.m \
*.mm \
*.dox \ *.dox \
*.py *.py

View file

@ -142,7 +142,7 @@ namespace Key
F15, F15,
Pause, Pause,
Count // For internal use Count // Keep last -- total number of keyboard keys
}; };
} }
@ -160,7 +160,7 @@ namespace Mouse
XButton1, XButton1,
XButton2, XButton2,
Count // For internal use Count // Keep last -- total number of mouse buttons
}; };
} }
@ -180,7 +180,7 @@ namespace Joy
AxisV, AxisV,
AxisPOV, AxisPOV,
Count // For internal use Count // Keep last -- total number of joystick axis
}; };
} }
@ -286,7 +286,9 @@ public :
MouseLeft, MouseLeft,
JoyButtonPressed, JoyButtonPressed,
JoyButtonReleased, JoyButtonReleased,
JoyMoved JoyMoved,
Count // Keep last -- total number of event types
}; };
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////