Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
244 chris 1
#ifndef __SCROLLLISTENER_H__
2
#define __SCROLLLISTENER_H__
3
 
4
namespace Sexy
5
{
6
 
7
class ScrollListener
8
{
9
public:
10
        virtual void ScrollPosition(int theId, double thePosition) {};
11
};
12
 
13
}
14
 
15
#endif // __SCROLLLISTENER_H__