Number.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00023 #ifndef _ABSTRACT_CLASS_BEE_LANG_NUMBER_H
00024 #define _ABSTRACT_CLASS_BEE_LANG_NUMBER_H
00025
00026 #ifdef __cplusplus
00027
00028 #include "beecrypt/c++/lang/Object.h"
00029 using beecrypt::lang::Object;
00030
00031 namespace beecrypt {
00032 namespace lang {
00035 class BEECRYPTCXXAPI Number : public beecrypt::lang::Object
00036 {
00037 public:
00038 virtual ~Number() {}
00039
00040 virtual jbyte byteValue() const throw () = 0;
00041 virtual jint intValue() const throw () = 0;
00042 virtual jlong longValue() const throw () = 0;
00043 virtual jshort shortValue() const throw () = 0;
00044
00045
00046 };
00047 }
00048 }
00049
00050 #endif
00051
00052 #endif