Guest User

Untitled

a guest
Jul 21st, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. class CFile : CSGObject
  2. {
  3. public:
  4.     SGVector<bool> get_bool_vector();
  5.     SGVector<int32_t> get_int_vector();
  6.     SGVector<int64_t> get_long_vector();
  7.     SGVector<float64_t> get_real_vector();
  8.  
  9.     ...
  10.  
  11.     SGMatrix<bool> get_bool_matrix();
  12.  
  13.     ...
  14.  
  15.     and so on
  16. };
Advertisement
Add Comment
Please, Sign In to add comment