Changeset 1106 for to-imperative/trunk/runtime/rf_short_int.hh
- Timestamp:
- Aug 6, 2003, 5:30:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
to-imperative/trunk/runtime/rf_short_int.hh
r835 r1106 16 16 using namespace rfrt; 17 17 18 class ShortInt:18 class Int32 : 19 19 public Term 20 20 { … … 30 30 static Expr create_expr (pxx::WString& _str); 31 31 32 inline ShortInt(intptr_t n) ;32 inline Int32 (intptr_t n) ; 33 33 inline intptr_t to_int () const ; 34 34 35 35 inline size_t get_char_len () const ; 36 36 37 static void ctor ( ShortInt* _to, ShortIntconst* _from) ;38 static int compare ( ShortInt const* _shint1, ShortIntconst* _shint2) ;39 static uint32_t hash ( ShortIntconst* _shint) ;40 static pxx::WString to_string ( ShortIntconst* _shint) ;37 static void ctor (Int32* _to, Int32 const* _from) ; 38 static int compare (Int32 const* _shint1, Int32 const* _shint2) ; 39 static uint32_t hash (Int32 const* _shint) ; 40 static pxx::WString to_string (Int32 const* _shint) ; 41 41 static short_type_funcs_t funcs ; 42 42 static TypeRegister reg ; … … 45 45 46 46 } 47 // static Expr create_expr (Expr& _expr, int _flag);48 47 49 48 #endif // __rf_short_int_hh__
Note: See TracChangeset
for help on using the changeset viewer.