00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef FALCON_CALLPOINT_H_
00021 #define FALCON_CALLPOINT_H_
00022
00023 #include <falcon/setup.h>
00024 #include <falcon/types.h>
00025 #include <falcon/garbageable.h>
00026
00027 namespace Falcon
00028 {
00029
00030 class FALCON_DYN_CLASS CallPoint: public Garbageable
00031 {
00032 public:
00033 virtual ~CallPoint() {}
00034
00035 virtual const String& name() const = 0;
00036 virtual void readyFrame( VMachine* vm, uint32 paramCount ) = 0;
00037 virtual bool isFunc() const = 0;
00038
00039 };
00040
00041 }
00042
00043 #endif
00044
00045