Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
244 chris 1
#ifndef __DIALOGLISTENER_H__
2
#define __DIALOGLISTENER_H__
3
 
4
namespace Sexy
5
{
6
 
7
class DialogListener
8
{
9
public:
10
        virtual void                    DialogButtonPress(int theDialogId, int theButtonId) {}
11
        virtual void                    DialogButtonDepress(int theDialogId, int theButtonId) {}
12
};
13
 
14
}
15
 
16
#endif // __DIALOGLISTENER_H__