paragui-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[paragui-cvs] CVS: paragui/include pgtimerobject.h,NONE,1.1.2.1 Makefile


From: Alexander Pipelka <address@hidden>
Subject: [paragui-cvs] CVS: paragui/include pgtimerobject.h,NONE,1.1.2.1 Makefile.am,1.1.1.1,1.1.1.1.6.1
Date: Tue, 28 May 2002 16:18:14 -0400

Update of /cvsroot/paragui/paragui/include
In directory subversions:/tmp/cvs-serv26030/include

Modified Files:
      Tag: devel-1-0
        Makefile.am 
Added Files:
      Tag: devel-1-0
        pgtimerobject.h 
Log Message:
added PG_TimerObject class
adapted animation sample



--- NEW FILE ---
#ifndef PG_TIMEROBJECT_H
#define PG_TIMEROBJECT_H

#include "paragui.h"
#include <map>

class PG_TimerObject {
        
public:
        
        PG_TimerObject();

        virtual ~PG_TimerObject();
        
        SDL_TimerID AddTimer(Uint32 interval);
        
        bool RemoveTimer();
        
        virtual Uint32 eventTimer(Uint32 interval);
        
private:
        
        static Uint32 callbackTimer(Uint32 interval, void* data);
        
        SDL_TimerID my_timerid; 
        static Uint32 my_objectcount;
};

#endif // PG_TIMEROBJECT_H

Index: Makefile.am
===================================================================
RCS file: /cvsroot/paragui/paragui/include/Makefile.am,v
retrieving revision 1.1.1.1
retrieving revision 1.1.1.1.6.1
diff -C2 -r1.1.1.1 -r1.1.1.1.6.1
*** Makefile.am 15 Apr 2002 13:22:31 -0000      1.1.1.1
--- Makefile.am 28 May 2002 20:18:08 -0000      1.1.1.1.6.1
***************
*** 49,53 ****
        pgmenubar.h \
        pgcompat.h \
!       pgdatacontainer.h
  
  EXTRA_DIST = \
--- 49,54 ----
        pgmenubar.h \
        pgcompat.h \
!       pgdatacontainer.h \
!       pgtimerobject.h
  
  EXTRA_DIST = \




reply via email to

[Prev in Thread] Current Thread [Next in Thread]