intarray.h 546 B

123456789101112131415161718
  1. #ifndef _INTARRAY_H
  2. #define _INTARRAY_H
  3. #include <bfc/common.h>
  4. #include <bfc/named.h>
  5. #include <bfc/ptrlist.h>
  6. class IntArray
  7. {
  8. public:
  9. static int read(const wchar_t *name, int *x1, int *x2=NULL, int *x3=NULL, int *x4=NULL, int *x5=NULL, int *x6=NULL, int *x7=NULL, int *x8=NULL);
  10. static void write(const wchar_t *name, int x1);
  11. static void write(const wchar_t *name, int x1, int x2);
  12. static void write(const wchar_t *name, int x1, int x2, int x3);
  13. static void write(const wchar_t *name, int x1, int x2, int x3, int x4);
  14. };
  15. #endif